curl --request GET \
--url https://api.example.com/cabinet/balance/payment-methods \
--header 'Authorization: Bearer <token>'[
{
"id": "<string>",
"name": "<string>",
"min_amount_kopeks": 123,
"max_amount_kopeks": 123,
"description": "<string>",
"is_available": true,
"options": [
{}
]
}
]Get available payment methods for the current user.
Uses PaymentMethodConfig from database for:
curl --request GET \
--url https://api.example.com/cabinet/balance/payment-methods \
--header 'Authorization: Bearer <token>'[
{
"id": "<string>",
"name": "<string>",
"min_amount_kopeks": 123,
"max_amount_kopeks": 123,
"description": "<string>",
"is_available": true,
"options": [
{}
]
}
]Bearer authentication header of the form Bearer <token>, where <token> is your auth token.