Skip to main content
GET
/
cabinet
/
referral
/
withdrawal
/
history
Get Withdrawal History
curl --request GET \
  --url https://api.example.com/cabinet/referral/withdrawal/history \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": 123,
      "amount_kopeks": 123,
      "amount_rubles": 123,
      "status": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "payment_details": "<string>",
      "admin_comment": "<string>",
      "processed_at": "2023-11-07T05:31:56Z"
    }
  ],
  "total": 123
}

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 user's withdrawal requests.

items
WithdrawalItemResponse · object[]
required
total
integer
required