Batch Cancel
Description
Can batch to cancel orders by futures name
HTTP Request
- POST /fapi/v1/trade/batchCancel
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| futuresName | String | Yes | Futures name, e.g. "E-BTC-USDT" |
| orderIds | List<String> | Yes | Cancel order ID. maximum length: 10 |
Request Example
http
curl -X POST 'https://futuresopenapi.100ex.com/fapi/v1/trade/batchCancel' \
-H "X-CH-TS:1736156253259" \
-H "X-CH-SIGN:*" \
-H "X-CH-APIKEY:********" \
-H "Content-Type: application/json" \
-d '{
"futuresName": "E-BTC-USDT",
"orderIds": [
"2523202885939469204"
]
}'Response Parameters
| Parameter | Type | Description |
|---|---|---|
| cancelIds | List<String> | Successful order ID list |
Response Example
json
{
"code": "0",
"msg": "suc",
"data": {
"cancelIds": [
"2523202885939469204"
]
}
}