action configcat_invite_member { label: "Invite Member" description: "This endpoint invites a Member into the given Product identified by the `productId` parameter." provider: configcat method: POST path: "/v1/products/{productId}/members/invite" encoding: json input: { type: "object" properties: { emails: { type: "array" items: { type: "string" } } permissionGroupId: { type: "integer" format: "int64" } productId: { type: "string" format: "uuid" } } required: ["emails", "permissionGroupId", "productId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }