Bank Branch List
This API returns all bank branch list which operates in Turkey. Branches are filtered by bank and city.
API Information
URL |
/bankBranchList |
Method |
POST |
Version |
1.0 |
Scope |
public |
Authorization Flow |
Client Credentials |
Input Information
| Name | Format | Description | Required/Optional |
BankCode |
String | Bank code | Required |
CityCode |
String | City code | Required |
Output Information
| Name | Format | Description |
BankBranch |
List< BankBranch > | Bank branch information |
BankBranch
| Name | Format | Description |
BankCode |
String | Bank code |
BranchCode |
String | Branch code |
BranchName |
String | Branch name |
Message Codes
| Message Code | Description |
ACBH000019 |
Bank code cannot be empty. |
ACBH000020 |
An invalid value was entered in the bank code field. |
ACBH000021 |
An invalid value was entered in the city code field. |
ACBH000038 |
City code cannot be empty. |
ACBH000129 |
Bank branch is not found. |
Example
Request:
{
"BankCode" : "15",
"CityCode" : "34"
}
Response:
{
"Header": {
"StatusCode": "APIGW000000",
"StatusDescription": "Completed",
"ObjectID": "a9b7da41-4a4c-4416-a3b3-031f67c53bf4"
},
"Data": {
"BankBranch": [
{
"BankCode": "15",
"BranchName": "GENEL MÜDÜRLÜK",
"BranchCode": "00001"
},
{
"BankCode": "15",
"BranchName": "İSTANBUL ŞUBESİ",
"BranchCode": "00003"
},
{
"BankCode": "15",
"BranchName": "TAKSİM/İSTANBUL",
"BranchCode": "00005"
},
...
{
"BankCode": "15",
"BranchName": "GÜNEŞLİ KURUMSAL MERKEZİ ŞUBESİ",
"BranchCode": "01426"
}
]
}
}
-
API URL : https://apigw.vakifbank.com.tr:8443
-
-
-