action configcat_get_sdk_keys { label: "Get SDK Key" description: "This endpoint returns the SDK Key for your Config in a specified Environment." provider: configcat method: GET path: "/v1/configs/{configId}/environments/{environmentId}" encoding: json input: { type: "object" properties: { configId: { type: "string" format: "uuid" } environmentId: { type: "string" format: "uuid" } } required: ["configId", "environmentId"] additionalProperties: false } output: { type: "object" properties: { primary: { type: "string" } secondary: { type: "string" } } additionalProperties: false } }