action configcat_add_member_to_group { label: "Update Member Permissions" description: "This endpoint adds a Member identified by the `userId` to one or more Permission Groups. \nThis endpoint can also be used to move a Member between Permission Groups within a Product.\nOnly a single Permission Group can be set per Product." provider: configcat method: POST path: "/v1/organizations/{organizationId}/members/{userId}" encoding: json input: { type: "object" properties: { organizationId: { type: "string" format: "uuid" } permissionGroupIds: { type: "array" items: { type: "integer" format: "int64" } } userId: { type: "string" } } required: ["organizationId", "permissionGroupIds", "userId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }