action configcat_get_organization_members { label: "List Organization Members" description: "This endpoint returns the list of Members that belongs \nto the given Organization, identified by the `organizationId` parameter." provider: configcat method: GET path: "/v1/organizations/{organizationId}/members" encoding: json input: { type: "object" properties: { organizationId: { type: "string" format: "uuid" } } required: ["organizationId"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { email: { type: "string" } fullName: { type: "string" } userId: { type: "string" } } additionalProperties: false } } }