VakıfBank ATM List

This API returns VakıfBank’s ATM informations. ATM informations are filtered by area.

API Information

URL

/vakifbankATMList

Method

POST

Version

1.0

Scope

public

Authorization Flow

Client Credentials


Input Information

Name Format Description Required/Optional

CityCode

String City code Optional

DistrictCode

String District code Optional


Output Information

Name Format Description

ATM

List< ATM > ATM information


ATM

Name Format Description

ATMCode

String ATM code

ATMName

String ATM name

CityCode

String City code

DistrictCode

String District code

ATMAddress

String ATM address

ATMCurrencyCode

String Valid currency code information for ATM
1: TL, 2: USD

isVisuallyImpaired

String Useable for visual imparied person
0: Useable, 1: Not Useable

LocationCode

String Location code
1: Eastern Anatolia Region, 2: Marmara Region, 3: Black Sea Region, 4: Meditarrenean Region, 5: Southeastern Anatolia Region, 6: Central Anatolia Region, 7: Aegean Region

ServiceCode

String Service code
1: Restricted, 2: 7/24 Open

Latitude

Double Latitude

Longitude

Double Longitude


Message Codes

Message Code Description

ACBH000021

An invalid value was entered in the city code field.

ACBH000038

City code cannot be empty.

ACBH000053

Bank district code should consist of only numerical data.

Example

Request:

{
	"CityCode": "34" ,
	"DistrictCode": "457"
}

Response:

{
    "Header": {
        "StatusCode": "APIGW000000",
        "StatusDescription": "Completed",
        "ObjectID": "14f7cc74-f085-4726-b329-baaab2e1f7b3"
    },
    "Data": {
        "ATM": [
            {
                "CityCode": "34",
                "ServiceCode": "2",
                "LocationCode": "7",
                "Latitude": "41,07666800000",
                "ATMName": "İKİTELLİ ŞUBESİ",
                "ATMCurrencyCode": "1",
                "Longitude": "28,80945000000",
                "ATMCode": "004044",
                "ATMAddress": "ORGANİZE SANAYİ BÖLGESİ ATATÜRK CADDESİ NO:72/D",
                "isVisuallyImpaired": "",
                "DistrictCode": "457"
            },
            {
                "CityCode": "34",
                "ServiceCode": "2",
                "LocationCode": "7",
                "Latitude": "41,10829400000",
                "ATMName": "MASLAK ŞUBESİ",
                "ATMCurrencyCode": "1",
                "Longitude": "29,01865500000",
                "ATMCode": "0111yp",
                "ATMAddress": "BÜYÜKDERE CADDESİ NO:22 PARK PLAZA 5/A",
                "isVisuallyImpaired": "",
                "DistrictCode": "457"
            },
			...
            {
                "CityCode": "34",
                "ServiceCode": "2",
                "LocationCode": "7",
                "Latitude": "41,01384300000",
                "ATMName": "BEYKENT ŞUBESİ",
                "ATMCurrencyCode": "1",
                "Longitude": "28,62582900000",
                "ATMCode": "003778",
                "ATMAddress": "YAVUZ SULTAN SELİM BULVARI VİSTA RESİDANCE A-1 BLOK NO:10/4",
                "isVisuallyImpaired": "",
                "DistrictCode": "457"
            }
        ]
    }
}