action interactivebrokers_delete_accounts_account_orders_customer_order_id { label: "Cancel Order" description: "Cancels the order with the referenced Customer Order ID for the account passed in the URL." provider: interactivebrokers method: DELETE path: "/accounts/{account}/orders/{CustomerOrderId}" encoding: json output: { type: "array" items: { type: "object" properties: { CustomerOrderId: { type: "string" } OrderQty: { type: "number" } OrderType: { type: "number" description: "Market = '1'\nLimit = '2'\nStop = '3'\nStopLimit = '4'\n" enum: [1, 2, 3, 4] } Price: { type: "string" } Side: { type: "number" enum: [1, 2] } Status: { type: "string" description: "Status of the order\nInvalidOrderStatus = '-1'\nNew = '0'\nPartiallyFilled = '1'\nFilled = '2'\nDoneForTheDay = '3'\nCanceled = '4'\nReplaced = '5'\nPendingCancelReplace = '6'\nStopped = '7'\nRejected = '8'\nSuspended = '9'\nPendingNew = 'A'\nCalculated = 'B'\nExpired = 'C'\nAcceptedForBidding = 'D'\nPendingReplace = 'E'\n" enum: ["-1", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "A", "B", "C", "D", "E"] } Symbol: { type: "number" } Warning: { type: "string" } } } } }