cURL
curl --request GET \ --url https://mock-api.cevro.ai/v1/players/{playerId}/withdrawals \ --header 'Authorization: Bearer <token>' \ --header 'X-Session-ID: <x-session-id>'
{ "withdrawals": [ { "id": "<string>", "amount": 123, "currency": "<string>", "status": "pending", "payment_method": "<string>", "cancelled_reason": "<string>", "created_at": "2023-11-07T05:31:56Z", "approved_at": "2023-11-07T05:31:56Z", "completed_at": "2023-11-07T05:31:56Z", "can_cancel": true } ], "total": 123, "limit": 123, "offset": 123 }
Returns withdrawal transactions with filtering and pagination.
API Bearer token. For this demo, any non-empty string is accepted.
pending
processing
approved
completed
cancelled
rejected
Withdrawal history retrieved successfully
Show child attributes