action interactivebrokers_get_accounts_account_orders_customer_order_id { label: "Return specific order info" description: "Returns the order with the referenced Customer Order ID for the account passed in the URL." provider: interactivebrokers method: GET path: "/accounts/{account}/orders/{CustomerOrderId}" encoding: json output: { type: "array" items: { type: "object" description: "An object containing all the properties defining an order" properties: { ContractId: { type: "number" } CustomerOrderId: { type: "number" } FilledQuantity: { type: "number" } ListingExchange: { type: "string" } OrderType: { type: "number" description: "Market = '1'\nLimit = '2'\nStop = '3'\nStopLimit = '4'\n" enum: [1, 2, 3, 4] } OutsideRTH: { type: "string" } Price: { type: "number" } RemainingQuantity: { type: "number" } Side: { type: "string" 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"] } Ticker: { type: "string" } TimeInForce: { type: "number" description: "Defines order's active lifetime.\nDay = '0'\nGTC (Good till Cancel) = '1'\nIOC (Immediate or Cancel) = '3'\nOpen = '2'\nClose = '7'\n" enum: [0, 1, 2, 3, 7] } TransactionTime: { type: "string" } Warning: { type: "string" } } } } }