action bigredcloud_vat_categories_get { label: "Returns a list of global Vat Categories. Supports OData querying protocol. \nFiltering is forbidden. \nOrdering is allowed by \"id\" field." provider: bigredcloud method: GET path: "/v1/vatCategories" encoding: json output: { type: "object" properties: { Count: { type: "integer" format: "int64" } Items: { type: "array" items: { type: "object" properties: { description: { type: "string" } id: { type: "integer" format: "int64" } } } } NextPageLink: { type: "string" } } } }