VakıfBank Branch List

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

API Information

URL

/vakifbankBranchList

Method

POST

Version

1.0

Scope

public

Authorization Flow

Client Credentials


Input Information

Name Format Description Required/Optional

CityCode

String City code Optional

BankDistrictCode

String Bank district code Optional


Output Information

Name Format Description

Branch

List< Branch > Branch information


Branch

Name Format Description

BranchCode

String Branch code

CityCode

String City code

BranchAddress

String Branch address

BranchName

String Branch name

BankDistrictCode

String Bank district code

BranchStatus

String Branch status
1: Open 2: Close 3: Suspend


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" ,
    "BankDistrictCode": "13"
}

Response:

{
    "Header": {
        "StatusCode": "APIGW000000",
        "StatusDescription": "Completed",
        "ObjectID": "568bd9dd-43e8-44eb-9383-4d606cdf230a"
    },
    "Data": {
        "Branch": [
            {
                "CityCode": "34",
                "BranchAddress": "FULYA MAHALLESİ BÜYÜKDERE CADDESİ NO:62/A ŞİŞLİ/İSTANBUL",
                "BranchStatus": "1",
                "BranchName": "MECİDİYEKÖY MEYDAN/İSTANBUL ŞUBESİ",
                "BranchCode": "00808",
                "BankDistrictCode": "13"
            },
            {
                "CityCode": "34",
                "BranchAddress": "CUMHURİYET MAH.ERGENEKON CAD. NO:58A FERİKÖY ŞİŞLİ/İSTANBUL",
                "BranchStatus": "1",
                "BranchName": "FERİKÖY İSTANBUL ŞUBESİ",
                "BranchCode": "00389",
                "BankDistrictCode": "13"
            },            
            {
                "CityCode": "34",
                "BranchAddress": "ŞAKAYIK SK.NO:58_1/2 NıSANTASı",
                "BranchStatus": "2",
                "BranchName": "NİŞANTAŞI/İST.",
                "BranchCode": "00308",
                "BankDistrictCode": "13"
            },
            ...
            {
                "CityCode": "34",
                "BranchAddress": "CUMHURİYET MAH.HALASKARGAZİ CAD. NO:101/C ŞİŞLİ/İSTANBUL",
                "BranchStatus": "1",
                "BranchName": "OSMANBEY ŞUBESİ DNM1",
                "BranchCode": "00006",
                "BankDistrictCode": "13"
            }
        ]
    }
}