action configcat_update_environment { label: "Update Environment" description: "This endpoint updates an Environment identified by the `environmentId` parameter." provider: configcat method: PUT path: "/v1/environments/{environmentId}" encoding: json input: { type: "object" properties: { color: { type: "string" } description: { type: "string" } environmentId: { type: "string" format: "uuid" } name: { type: "string" } } required: ["environmentId"] additionalProperties: false } output: { type: "object" properties: { color: { type: "string" } description: { type: "string" } environmentId: { type: "string" format: "uuid" } 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 } reasonRequired: { type: "boolean" } } additionalProperties: false } }