fps/banks
fps/banks
You can use this request to get a list of names and identifiers of the banks that are Faster Payment participants.
Endpoint
/api/v1/fps/banks
Request parameters
None.
Request example
curl --location --request GET 'https://demo.smart-glocal.com/api/v1/fps/banks' \
--header 'Content-Type: application/json' \
--header 'X-PARTNER-SIGN: signature' \
--header 'X-PARTNER-PROJECT: your_project_name' \
--data-raw '{}'
Response parameters
Name | Mandatory | Type | Description |
---|---|---|---|
banks | + | object | Bank details |
id | + | string | Bank identifier |
eng_name | + | string | Bank name in English |
ru_name | + | string | Bank name in Russian |
Response example
{
"banks": [
{
"id": "100000000243",
"eng_name": "National Standard Bank",
"ru_name": "Национальный стандарт"
},
{
"id": "100000000056",
"eng_name": "Khlynov",
"ru_name": "Хлынов"
},
...
]
}