action configcat_create_tag { label: "Create Tag" description: "This endpoint creates a new Tag in a specified Product \nidentified by the `productId` parameter, which can be obtained from the [List Products](#operation/get-products) endpoint." provider: configcat method: POST path: "/v1/products/{productId}/tags" encoding: json input: { type: "object" properties: { color: { type: "string" } name: { type: "string" } productId: { type: "string" format: "uuid" } } required: ["name", "productId"] additionalProperties: false } output: { type: "object" properties: { color: { type: "string" } name: { type: "string" } product: { 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 } tagId: { type: "integer" format: "int64" } } additionalProperties: false } }