Cancel Multiple Futures Limit orders
Cancel all open orders (excluding stop orders). The response is a list of orderIDs of the canceled orders.
HTTP REQUEST
DELETE /api/v1/orders
Example
DELETE /api/v1/orders?symbol=XBTUSDM
{
"code": "200000",
"data": {
"cancelledOrderIds": [
"5c52e11203aa677f33e493fb",
"5c52e12103aa677f33e493fe",
"5c6265c503aa676fee84129c",
"5c6269e503aa676fee84129f",
"5c626b0803aa676fee8412a2"
]
}
}
API KEY PERMISSIONS
This endpoint requires the Futures Trading permission.
REQUEST URL
This endpoint support Futures URL
REQUEST RATE LIMIT
Futures weight
:30
PARAMETERS
Param | Type | Mandatory | Description |
---|---|---|---|
symbol | String | No | Cancel all limit orders for a specific contract only, , If not specified, all the limit orders will be deleted. |
RESPONSES
Param | Description |
---|---|
cancelledOrderIds | Unique ID of the cancelled order |