curl --request GET \
--url https://api.example.com/cabinet/balance/saved-cards \
--header 'Authorization: Bearer <token>'{
"cards": [
{
"id": 123,
"method_type": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"card_last4": "<string>",
"card_type": "<string>",
"title": "<string>"
}
],
"recurrent_enabled": false
}Get user’s saved payment methods (cards) for recurrent payments.
curl --request GET \
--url https://api.example.com/cabinet/balance/saved-cards \
--header 'Authorization: Bearer <token>'{
"cards": [
{
"id": 123,
"method_type": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"card_last4": "<string>",
"card_type": "<string>",
"title": "<string>"
}
],
"recurrent_enabled": false
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.