action configcat_update_tag { label: "Update Tag" description: "This endpoint updates a Tag identified by the `tagId` parameter." provider: configcat method: PUT path: "/v1/tags/{tagId}" encoding: json input: { type: "object" properties: { color: { type: "string" } name: { type: "string" } tagId: { type: "integer" format: "int64" } } required: ["tagId"] 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 } }