Skip to main content

List Groups

GET /v1/access/groups Returns all groups in the workspace.

Create a Group

POST /v1/access/groups
Response201 Created

Add Members to a Group

POST /v1/access/groups/{id}/members
Response200 OK

Remove a Member from a Group

DELETE /v1/access/groups/{id}/members/{user_id} Response204 No Content

Update Group Roles

PATCH /v1/access/groups/{id}
Role changes apply immediately to all members of the group.

Delete a Group

DELETE /v1/access/groups/{id} Deletes the group and removes all role assignments derived from group membership. Users are not deleted. Response204 No Content
Members who received roles exclusively through a deleted group will lose those roles immediately. Assign roles directly to affected users if continued access is required.