action bigredcloud_products_put { label: "Updates an existing Product." provider: bigredcloud method: PUT path: "/v1/products/{id}" encoding: json input: { 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" } } required: ["id"] additionalProperties: false } output: { type: "object" } }