This section provides endpoints to manage and retrieve information about user fiat withdrawals.
Returns a list of all withdrawal requests.
List of withdrawals retrieved successfully
{- "api_message": "WITHDRAWAL_GET_LIST_SUCCESS",
- "api_data": {
- "last_at": "2019-08-24T14:15:22Z",
- "total_items": 0,
- "withdrawls": [
- {
- "id": "string",
- "user_id": "string",
- "amount": 0,
- "currency": "string",
- "status": "string",
- "remarks": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "username": "string"
}
]
}
}
{- "amount": "15000",
- "currency": "USD"
}
{- "api_message": "WITHDRAWAL_POST_SUCCESS",
- "api_data": {
- "withdrawl": {
- "id": "string",
- "amount": 0,
- "currency": "string",
- "status": "string",
- "created_at": "2019-08-24T14:15:22Z"
}
}
}
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"
}
}
}