action ix_api_accounts_list { label: "accounts_list" description: "Retrieve a list of `Account`s.\n\nThis includes all accounts the currently authorized account\nis managing and the current account itself." provider: ix_api method: GET path: "/accounts" encoding: json input: { type: "object" properties: { billable: { type: "integer" } external_ref: { type: "string" } id: { type: "array" items: { type: "string" } } managing_account: { type: "string" } name: { type: "string" } state: { type: "string" } state__is_not: { type: "string" } } additionalProperties: false } output: { type: "array" items: { type: "object" } } }