Skip to content
v1.0.0 (2026-08-15 18:56)

Get Withdraw History

Get the withdrawal order history for the current member.

API Details

  • Path: /client/member/withdraw-history
  • Method: GET
  • Authentication: Bearer Token (must pass valid Authorization: Bearer <token> in the Header)

Headers

ParameterRequiredTypeDescription
AuthorizationYesStringBearer Token, obtained via Member Login API

Request Parameters

Use URL Query String to send request parameters.

FieldTypeRequiredDescription
pagenumberYesCurrent page number, e.g., 1
pageSizenumberYesNumber of records per page, e.g., 10
statusstringNoFilter by status, e.g., Approved, Pending, Rejected

/client/member/withdraw-history?page=1&pageSize=10&status=Approved

Response Example

json
{
  "code": 0,
  "data": {
    "list": [
      {
        "id": "60a7c9b8f1d2e3b4a5c6d7e8",
        "transaction_id": "W20261122xxxx",
        "currency": "USD",
        "amount": 100.5,
        "payment_bank": "ABC Bank",
        "bank_account": "1234567890",
        "status": "Approved",
        "created_at": "2023-10-15T10:30:00Z"
      }
    ],
    "total": 1,
    "page": 1,
    "pageSize": 10
  },
  "msg": "Success"
}

Response Parameter Description

FieldTypeDescription
codenumberStatus code, 0 means success
dataobjectObject containing pagination info and data list
data.listarrayWithdrawal record list
data.totalnumberTotal number of records matching the condition
data.pagenumberCurrent page number
data.pageSizenumberPage size
msgstringResponse message