This section provides endpoints to manage and retrieve information about user fiat withdrawals.
Filter value. For DR (date range) this should be a JSON object with from and to ISO timestamps. Must be URL-encoded in the actual request.
List of withdrawals retrieved successfully
{- "api_message": "WITHDRAWAL_GET_LIST_SUCCESS",
- "api_data": {
- "last_at": "2025-12-04T23:59:59.000Z",
- "total_items": 128,
- "withdrawls": [
- {
- "id": "string",
- "user_id": "string",
- "amount": 0,
- "currency": "string",
- "currency_id": "string",
- "bank_account_id": "string",
- "system_fee": 0,
- "status": "string",
- "remarks": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "username": "string"
}
]
}
}Creates a new withdrawal request.
Withdrawal successfully created
{- "amount": "1158",
- "currency": "USD",
- "currency_id": "bkE0RmNjbEhCUmc9",
- "bank_account_id": "OE9Dam9zR0ZiNk09"
}{- "api_message": "WITHDRAWAL_POST_SUCCESS",
- "api_data": {
- "withdrawl": {
- "id": "UnhWS2pySW9hcHc9",
- "user_id": "V0FrTk5FR3NUeE1rakFhQjJKSWxNZz09",
- "fiat_withdrawal_id": null,
- "fiat_provider": null,
- "lp_withdrawal_id": null,
- "lp_provider": null,
- "ref_account_id": "eGFCV203K3VSOGM9",
- "reviewed_by_id": null,
- "amount": 1042.2,
- "system_fee": 115.8,
- "currency": "USD",
- "currency_id": "bkE0RmNjbEhCUmc9",
- "bank_account_id": "OE9Dam9zR0ZiNk09",
- "status": "PENDING",
- "remarks": null,
- "ip": "83.130.84.55",
- "created_by_id": "V0FrTk5FR3NUeE1rakFhQjJKSWxNZz09",
- "created_at": "2025-12-21 11:56:05",
- "updated_at": "2025-12-21 11:56:05"
}
}
}Returns details of a specific withdrawal request.
Withdrawal details retrieved successfully
{- "api_message": "WITHDRAWAL_GET_SHOW_SUCCESS",
- "api_data": {
- "withdrawl": {
- "id": "string",
- "user_id": "string",
- "amount": 0,
- "currency": "string",
- "status": "string",
- "remarks": "string",
- "created_at": "2019-08-24T14:15:22Z"
}
}
}Updates the status of a specific withdrawal request.
Withdrawal updated successfully
{- "status": "ADMIN_APPROVED",
- "remarks": "approve 1",
- "otp": "164209"
}{- "api_message": "WITHDRAWAL_PUT_SUCCESS",
- "api_data": {
- "withdrawl": {
- "id": "string",
- "status": "string",
- "remarks": "string",
- "updated_at": "2019-08-24T14:15:22Z"
}
}
}