Cancel Withdrawal
Cancel Withdrawal
Description
Cancel a withdrawal request that is still within the cooling-off period. Once the cooling-off period ends, cancellation is no longer possible. Each cancellation is limited to a single order; batch cancellation is not supported.
HTTP Request
- POST /api/v3/account/cancel-withdrawal
- Rate limit: 1/sec/UID
- Permission: Withdraw
Request
curl -X POST "https://api.bitget.com/api/v3/account/cancel-withdrawal" \
-H "ACCESS-KEY:your apiKey" \
-H "ACCESS-SIGN:*" \
-H "ACCESS-PASSPHRASE:*" \
-H "ACCESS-TIMESTAMP:1659076670000" \
-H "locale:en-US" \
-H "Content-Type: application/json" \
-d '{"orderId":"1098765432100000001"}'
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| orderId | String | No | Withdrawal order ID. Either orderId or clientOid must be provided. If both are provided, orderId takes precedence |
| clientOid | String | No | User-defined withdrawal order ID. Either orderId or clientOid must be provided |
Response
{
"code": "00000",
"msg": "success",
"requestTime": 1740000000000,
"data": "success"
}
Response Parameters
N/A