action configcat_create_product { label: "Create Product" description: "This endpoint creates a new Product in a specified Organization \nidentified by the `organizationId` parameter, which can be obtained from the [List Organizations](#operation/get-organizations) endpoint." provider: configcat method: POST path: "/v1/organizations/{organizationId}/products" encoding: json input: { type: "object" properties: { description: { type: "string" } name: { type: "string" } organizationId: { type: "string" format: "uuid" } } required: ["name", "organizationId"] 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 } }