List of available payment methods
GET /api/merchant/payment-methods
Request example
- CURL
curl --request GET \
--url https://{{domain}}/api/merchant/payment-methods \
--header 'X-Identity: {{api_key}}' \
--header 'X-Signature: {{sign}}'
Response example
[
{
"code": "SBP",
"name": "СБП",
"currency": "RUB"
},
{
"code": "TO_CARD",
"name": "Перевод на карту",
"currency": "RUB"
},
{
"code": "TO_ACCOUNT",
"name": "Перевод по номеру счета",
"currency": "RUB"
},
{
"code": "CROSS_BORDER",
"name": "Трансграничный",
"currency": "RUB"
}
]