Properties
| Name | Type | Description |
|---|---|---|
| symbol | string | Trading pair symbol. |
| origClientOrderId | string | Original client order ID. |
| orderId | integer | Order ID. |
| orderListId | integer | Order list ID. |
| clientOrderId | string | Client order ID for the cancel request. |
| transactTime | integer | Transaction time. |
| price | string | Order price. |
| origQty | string | Original quantity. |
| executedQty | string | Executed quantity before cancellation. |
| cummulativeQuoteQty | string | Cumulative quote asset quantity. |
| status | string | Order status after cancellation. |
| timeInForce | string | Time in force. |
| type | string | Order type. |
| side | string | Order side. |
| selfTradePreventionMode | string | Self-trade prevention mode. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CancelOrderResponse",
"title": "CancelOrderResponse",
"type": "object",
"properties": {
"symbol": {
"type": "string",
"description": "Trading pair symbol."
},
"origClientOrderId": {
"type": "string",
"description": "Original client order ID."
},
"orderId": {
"type": "integer",
"format": "int64",
"description": "Order ID."
},
"orderListId": {
"type": "integer",
"format": "int64",
"description": "Order list ID."
},
"clientOrderId": {
"type": "string",
"description": "Client order ID for the cancel request."
},
"transactTime": {
"type": "integer",
"format": "int64",
"description": "Transaction time."
},
"price": {
"type": "string",
"description": "Order price."
},
"origQty": {
"type": "string",
"description": "Original quantity."
},
"executedQty": {
"type": "string",
"description": "Executed quantity before cancellation."
},
"cummulativeQuoteQty": {
"type": "string",
"description": "Cumulative quote asset quantity."
},
"status": {
"type": "string",
"description": "Order status after cancellation."
},
"timeInForce": {
"type": "string",
"description": "Time in force."
},
"type": {
"type": "string",
"description": "Order type."
},
"side": {
"type": "string",
"description": "Order side."
},
"selfTradePreventionMode": {
"type": "string",
"description": "Self-trade prevention mode."
}
}
}