action bigredcloud_accounts_get { label: "Returns a list of company's Accounts. Supports OData querying protocol. \nFiltering is forbidden. \nOrdering is allowed by \"id\" and \"code\" fields." provider: bigredcloud method: GET path: "/v1/accounts" encoding: json output: { type: "object" properties: { Count: { type: "integer" format: "int64" } Items: { type: "array" items: { type: "object" properties: { accountGroup: { type: "string" } accountType: { type: "string" } code: { type: "string" } description: { type: "string" } id: { type: "integer" format: "int64" } } } } NextPageLink: { type: "string" } } } }