POST
/
api
/
order
/
withdrawRequest
curl --request POST \
  --url https://waasapi.url/api/v1/api/order/withdrawRequest \
  --header 'Content-Type: <content-type>' \
  --header 'X-API-KEY: <x-api-key>' \
  --data '{
  "callBackId": "D782243635",
  "userId": 1,
  "tenantUserId": "tenant123",
  "tenantType": 1,
  "amount": 0.5,
  "symbol": "TRX",
  "chainName": "TRON",
  "toAddr": "toAddress123",
  "tag": ""
}'
{
  "code": 0,
  "data": {
    "id": "order12345",
    "tenantUserId": "tenant123"
  },
  "message": ""
}

API Description

The merchant submits a withdrawal order that requires a second confirmation.

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.