REST API
Cancel an open order
Authorization
bearerAuth AuthorizationBearer <token>
API key passed as Bearer token in Authorization header
In: header
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
curl -X POST "https://loading/api/v1/trading/orders/cancel" \ -H "Content-Type: application/json" \ -d '{ "exchange": "binance", "marketType": "spot", "symbol": "string", "orderId": "string" }'{
"success": true,
"data": {
"success": true,
"message": "string"
},
"meta": {
"timestamp": 0,
"remaining": 0
}
}