Groups

Groups within the workspace. Learn more about group management here.

List Groups

get
/api/v1/auth/group

Get a list of user groups in the workspace.

Authorizations
Responses
200

List of groups.

application/json
get
/api/v1/auth/group

Create Group

post
/api/v1/auth/group

Create a new user group in the workspace.

Authorizations
Body
namestringOptional

Indicates the name of the group.

Example: Data Stewards
iconstringOptional

Indicates the icon of the team.

Example: πŸ˜€
descriptionstringOptional

Description of the group.

Example: Users responsible for keeping documentation up to date.
usersstring[]Optional

A list of user IDs that are part of this group.

Example: ["33733f42-8ff7-460b-9e20-50a2133d3bb0","c90dedee-40ee-47ec-9c27-96dc3b2ec363"]
Responses
post
/api/v1/auth/group

Get Group

get
/api/v1/auth/group/{id}

Get a user group by their ID.

Authorizations
Path parameters
idstringRequired

The ID of the group to retrieve.

Example: 3131f219-16bb-4c95-853a-894ae12db42a
Responses
200

OK

application/json
get
/api/v1/auth/group/{id}

Delete Group

delete
/api/v1/auth/group/{id}

Delete a group by their ID.

Authorizations
Path parameters
idstringRequired

The ID of the group to delete.

Example: 3131f219-16bb-4c95-853a-894ae12db42a
Responses
delete
/api/v1/auth/group/{id}

No content

Update Group

patch
/api/v1/auth/group/{id}

Use this endpoint to update the Group. Editable fields include the name, description, icon, and users.

Authorizations
Path parameters
idstringRequired

The ID of the group to update.

Example: 3131f219-16bb-4c95-853a-894ae12db42a
Body
namestringOptional

Indicates the name of the group.

Example: New Group
Responses
200

Group updated successfully

application/json
patch
/api/v1/auth/group/{id}

Last updated

Was this helpful?