Add a member to an access group

Adds an existing site member to an access group. The member must already exist on the site — create them first with createMember if needed.

Scope-managed groups cannot have members added via API — returns 403 Forbidden. Returns 409 Conflict if the member is already in the group.

POST /api/v1/access-groups/{groupId}/members
Bearer token

Path parameters

· 1
groupId string · uuid required

UUID of the access group. Get group IDs from listAccessGroups or createAccessGroup responses.

Body

· AddGroupMemberRequest
required application/json
memberId string · uuid required

UUID of an existing site member to add to the group. The member must already exist — use createMember first if needed.

Responses