POST
/
api
/
order
/
getWithdrawOrder
curl --request POST \
  --url https://waasapi.url/api/v1/api/order/getWithdrawOrder \
  --header 'Content-Type: <content-type>' \
  --header 'X-API-KEY: <x-api-key>' \
  --data '{
  "callBackId": "12345",
  "userId": 1,
  "tenantUserId": "tenant123",
  "tenantType": 1,
  "amount": 0.5,
  "symbol": "TRX",
  "chainName": "TRON",
  "txId": "tx12345",
  "fromAddr": "fromAddress123",
  "toAddr": "toAddress123",
  "tag": ""
}'
{
  "code": 0,
  "data": {
    "orderId": null,
    "symbol": "USDT",
    "baseCurrency": null,
    "amount": 5,
    "fiatAmount": null,
    "executedAmount": null,
    "executedFiatAmount": null,
    "price": null,
    "fee": null,
    "feeSymbol": null,
    "orderType": null,
    "orderState": 3,
    "clientOrderId": "client_order_123"
  },
  "message": ""
}

接口描述

获取提币单状态,商户需要重新确认提币单状态。

Headers

Content-Type
string
required

请求内容类型

Example:

"multipart/form-data"

X-API-KEY
string
required

平台方分配的 API-KEY

Example:

"your-api-key"

Body

application/json

提币单状态请求参数(JSON 格式)。

The body is of type object.

Response

200
application/json

成功返回提币单状态。

The response is of type object.