Get Single Withdrawal by Withdrawal ID
This endpoint supports querying the withdrawal records of sub-accounts created by a Broker (excluding main account of nd broker).
HTTP REQUEST
GET /api/v3/broker/nd/withdraw/detail
Example
GET /api/v3/broker/nd/withdraw/detail?withdrawalId=66617a2***3c9a
{
"data" : {
"id" : "66617a2***3c9a",
"chain" : "ton",
"walletTxId" : "AJ***eRI=",
"uid" : 157267400,
"updatedAt" : 1717664375000,
"amount" : "1.00000000",
"memo" : "7025734",
"fee" : "0.00000000",
"address" : "EQDn***dKbGzr",
"remark" : "",
"isInner" : false,
"currency" : "USDT",
"status" : "SUCCESS",
"createdAt" : 1717664288000
},
"code" : "200000"
}
REQUEST URL
This endpoint supports Broker URL
.
REQUEST RATE LIMIT
Broker Weight
: 1
PARAMETERS
Param | Type | Mandatory | Description |
---|---|---|---|
withdrawalId | String | Yes | Withdrawal ID |
RESPONSES
Param | Description |
---|---|
success | Total Pages |
code | Current Page |
data | Return List |
id | ID |
uid | UID |
currency | Currency |
chain | Chain |
status | Status (PROCESSING, WALLET_PROCESSING, REVIEW, SUCCESS, FAILURE) |
address | Address |
memo | Memo |
isInner | Is Internal (true or false) |
amount | Amount |
fee | Fee |
walletTxId | Wallet Transaction ID |
createdAt | Creation Time (milliseconds) |
updatedAt | Update Time (milliseconds) |
remark | Remark |