action bigredcloud_products_post { label: "Creates a new Product." provider: bigredcloud method: POST path: "/v1/products" 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" } } } output: { type: "object" } }