action interactivebrokers_get_accounts { label: "Brokerage Accounts" description: "Allows the caller to request a list of accounts associated with the session." provider: interactivebrokers method: GET path: "/accounts" encoding: json input: { type: "object" properties: { account: { type: "string" } } required: ["account"] additionalProperties: false } output: { type: "object" properties: { accounts: { type: "array" description: "Unique account id" items: { type: "string" } } } } }