action interactivebrokers_get_accounts_account_positions { label: "Account Positions" description: "Returns a list of positions for the indicated account. " provider: interactivebrokers method: GET path: "/accounts/{account}/positions" encoding: json input: { type: "object" properties: { account: { type: "string" } } required: ["account"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { AverageCost: { type: "number" } ContractId: { type: "number" } Position: { type: "number" } } } } }