提币撤销
提币撤销
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 Name | Required | Type | Description |
|---|---|---|---|
| wdId | true | string | Withdrawal ID |
| ccy | false | string | Coin |
| clientId | false | string | Client request ID for tracking only |
Request Example
{
"wdId": "339288",
"ccy": "USDT",
"clientId": "cancel_withdraw_golang_example_001"
}
Response Parameters
| Field Name | Type | Description |
|---|---|---|
| wdId | string | Withdrawal ID |
| clientId | string | Client request ID |
| state | string | Withdrawal state |
| uTime | string | Updated time |
| canCancel | boolean | Whether 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
}
}