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