List of available payment variants
GET /api/merchant/invoices/{id}/available-payment-variants
URL params
Name | Type | Description |
---|---|---|
id | string | Invoice ID |
Request example
- CURL
curl --request GET \
--url https://{{domain}}/api/merchant/invoices/{{id}}/available-payment-variants \
--header 'X-Identity: {{api_key}}' \
--header 'X-Signature: {{sign}}'
Response example
The response is returned as an array of objects PaymentVariantDTO.
Response example
[
{
"option": "TO_CARD",
"method": "sberbank"
},
{
"option": "SBP",
"method": "sberbank"
},
{
"option": "TO_CARD",
"method": "tinkoff"
}
]