action configcat_update_config { label: "Update Config" description: "This endpoint updates a Config identified by the `configId` parameter." provider: configcat method: PUT path: "/v1/configs/{configId}" encoding: json input: { type: "object" properties: { configId: { type: "string" format: "uuid" } description: { type: "string" } name: { type: "string" } } required: ["configId"] additionalProperties: false } output: { type: "object" properties: { configId: { type: "string" format: "uuid" } description: { type: "string" } name: { type: "string" } order: { type: "integer" format: "int32" } 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 } } additionalProperties: false } }