action bigredcloud_analysis_categories_get { label: "Returns a list of company's Analysis Categories. Supports OData querying protocol. \nFiltering is allowed by \"categoryTypeId\" field. \nOrdering is allowed by \"id\" and \"orderIndex\" fields." provider: bigredcloud method: GET path: "/v1/analysisCategories" encoding: json output: { type: "object" properties: { Count: { type: "integer" format: "int64" } Items: { type: "array" items: { type: "object" properties: { accountCode: { type: "string" } accountId: { type: "integer" format: "int64" } categoryTypeId: { type: "integer" format: "int64" } description: { type: "string" } id: { type: "integer" format: "int64" } orderIndex: { type: "integer" format: "int32" } } } } NextPageLink: { type: "string" } } } }