Skip to main content

提币撤销

提币撤销

Cancel a withdrawal that is still cancellable.

Request frequency limit: 1/1s

Authentication uses the standard private REST headers described in Access Guide; no extra withdrawal-specific request headers are required.

Request URL

POST /deepcoin/asset/cancel-withdrawal

Request Parameters

Field NameRequiredTypeDescription
wdIdtruestringWithdrawal ID
ccyfalsestringCoin
clientIdfalsestringClient request ID for tracking only

Request Example

{
"wdId": "339288",
"ccy": "USDT",
"clientId": "cancel_withdraw_golang_example_001"
}

Response Parameters

Field NameTypeDescription
wdIdstringWithdrawal ID
clientIdstringClient request ID
statestringWithdrawal state
uTimestringUpdated time
canCancelbooleanWhether the withdrawal can still be cancelled

Response Example

{
"code": "0",
"msg": "",
"data": {
"wdId": "339288",
"clientId": "cancel_withdraw_golang_example_001",
"state": "cancelling",
"uTime": "1777970900607",
"canCancel": false
}
}