action configcat_get_environments { label: "List Environments" description: "This endpoint returns the list of the Environments that belongs to the given Product identified by the\n`productId` parameter, which can be obtained from the [List Products](#operation/get-products) endpoint." provider: configcat method: GET path: "/v1/products/{productId}/environments" encoding: json input: { type: "object" properties: { productId: { type: "string" format: "uuid" } } required: ["productId"] additionalProperties: false } output: { type: "array" items: { 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 } } }