action bigredcloud_products_get { label: "Returns a list of company's Products. Supports OData querying protocol. \nFiltering is forbidden. \nOrdering is allowed by \"id\" and \"stockCode\" fields." provider: bigredcloud method: GET path: "/v1/products" encoding: json output: { type: "object" properties: { Count: { type: "integer" format: "int64" } Items: { type: "array" items: { type: "object" properties: { details: { type: "array" items: { type: "string" } } grossUnitPrice: { type: "boolean" } hasDefaultVatRate: { type: "boolean" } id: { type: "integer" format: "int64" } productTypeId: { type: "integer" format: "int64" } stockCode: { type: "string" } timestamp: { type: "string" format: "byte" } unitPrice: { type: "number" format: "double" } vatAnalysisTypeId: { type: "integer" format: "int64" } vatRateId: { type: "integer" format: "int64" } } } } NextPageLink: { type: "string" } } } }