action configcat_update_product { label: "Update Product" description: "This endpoint updates a Product identified by the `productId` parameter." provider: configcat method: PUT path: "/v1/products/{productId}" encoding: json input: { type: "object" properties: { description: { type: "string" } name: { type: "string" } productId: { type: "string" format: "uuid" } } required: ["productId"] additionalProperties: false } output: { type: "object" properties: { description: { type: "string" } name: { type: "string" } order: { type: "integer" format: "int32" } organization: { type: "object" properties: { name: { type: "string" } organizationId: { type: "string" format: "uuid" } } additionalProperties: false } productId: { type: "string" format: "uuid" } reasonRequired: { type: "boolean" } } additionalProperties: false } }