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