Getting a list of banks that are part of the SBP (API)
To create a SBP payment, you will need to specify the identifier of the SBP participating bank in the request. You can get the identifier using this API request:
https://unitpay.ru/api?
method=getSbpBankList
params[login]=email account
params[secretKey]=account secret key
Обязательные параметры:
name
type
description
login
string
Email account in the UnitPay system
Example of a successful response:
{
"result": [
{
"member_id": "100000000001",
"name": "Газпромбанк",
"name_en": "Gazprombank"
},
{
"member_id": "100000000002",
"name": "Золотая Корона (РНКО Платежный Центр)",
"name_en": "Korona Pay (Credit Union Payment Center)"
}
]
}
Example of an erroneous answer:
{
"error": {
"message": "Incorrect authorization parameters",
"code": -32000
}
}
name
decription
3200
Incorrect authorization parameters. Check the correctness of the specified data
Last updated
Was this helpful?