Cancel Order
Response
{
"symbol": "LTCBTC",
"origClientOrderId": "myOrder1",
"orderId": 4,
"clientOrderId": "cancelMyOrder1",
"price": "2.00000000",
"origQty": "1.00000000",
"executedQty": "0.00000000",
"cummulativeQuoteQty": "0.00000000",
"status": "CANCELED",
"type": "LIMIT",
"side": "BUY"
}
- DELETE
/api/v3/order
Permission: SPOT_DEAL_WRITE
Rate limit: Shared with the order endpoint, 12 requests/second
Cancel an active order.
Parameters:
| Name | Type | Mandatory | Description |
|---|---|---|---|
| symbol | string | YES | |
| orderId | string | NO | Order id |
| origClientOrderId | string | NO | |
| newClientOrderId | string | NO | |
| recvWindow | long | NO | |
| timestamp | long | YES |
Either orderId or origClientOrderId must be sent.
Response:
| Name | Description |
|---|---|
| symbol | Symbol |
| origClientOrderId | Original client order id |
| orderId | order id |
| clientOrderId | client order id |
| price | Price |
| origQty | Original order quantity |
| executedQty | Executed order quantity |
| cummulativeQuoteQty | Cummulative quote quantity |
| status | ENUM: Order Status |
| type | ENUM: Order Type |
| side | ENUM: Order Side |