Cancel Multiple Futures Stop orders
Cancel all untriggered stop orders. The response is a list of orderIDs of the canceled stop orders. To cancel triggered stop orders, please use 'Cancel Multiple Futures Limit orders'.
HTTP REQUEST
DELETE /api/v1/stopOrders
Example
DELETE /api/v1/stopOrders?symbol=XBTUSDM
{
"code": "200000",
"data": {
"cancelledOrderIds": [
"5c52e11203aa677f33e49311",
"5c52e12103aa677f33e49322"
]
}
}
API KEY PERMISSIONS
This endpoint requires the Futures Trading permission.
REQUEST URL
This endpoint support Futures URL
REQUEST RATE LIMIT
Futures weight
:15
PARAMETERS
Param | Type | Mandatory | Description |
---|---|---|---|
symbol | String | No | Cancel all untriggered stop orders for a specific contract only. If no symbol parameter is specified, all stop orders will be canceled. |
RESPONSES
Param | Description |
---|---|
cancelledOrderIds | Unique ID of the cancelled order |