Update group member status
Updates a member’s status (admin/member) in a group. This operation manages group membership through FGA (Fine-Grained Authorization) and affects the member’s permissions within the group.
Authorization: Requires group admin permissions. Status: Supports changing between admin and member roles. Side Effects: Status changes affect member permissions and capabilities.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
The unique identifier of the organization Standard identifier pattern for resource names
^[a-zA-Z0-9_ -]+$The unique identifier of the group
Group name pattern. Allows any character except / (would split the FGA resource path — see ResourceIdentifier.parseFromFga) and * (FGA wildcard). Length cap of 70 covers both user-defined groups (max 63 chars, enforced by Validators.isValidString) and workspace-derived groups (workspace name 1-63 + "-group" suffix).
^(?!.*\*)(?!.*[/]).{1,70}$The group member identifier. Either a user (user:{email}) or a nested group (group:{groupName}). Parsed by UserGroupId in the controller. User or group identifier pattern (user must be valid email address, group is standard identifier)
^(user:[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}|group:[a-zA-Z0-9._-]+)$Body
The new status for the member
admin, member Response
Member status updated successfully