Skip to main content
GET
/
cabinet
/
balance
/
saved-cards
Get Saved Cards
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
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

Successful Response

List of saved payment methods.

cards
SavedCardResponse · object[]
required
recurrent_enabled
boolean
default:false