Supported products
Supported products
Scope requirements
Scope requirements
Create teams
To create a team, make aPOST request to /settings/teams/2026-09-beta.
In the request body, include the team’s name and initial members. You can optionally assign the team a parent team to create a hierarchical structure.
A successful request returns a
201 response with the created team:
Retrieve teams
To retrieve all teams in your account, make aGET request to /settings/teams/2026-09-beta.
Use the limit and after query parameters to paginate through results:
Retrieve a single team
To retrieve a specific team by ID, make aGET request to /settings/teams/2026-09-beta/{teamId}.
A successful request returns the team object:
Update teams
To update a team’s name or parent team, make aPATCH request to /settings/teams/2026-09-beta/{teamId}.
A successful request returns the updated team object.
Delete teams
To delete a team, make aDELETE request to /settings/teams/2026-09-beta/{teamId}.
A successful request returns a 204 No Content response.
List team members
To retrieve the members of a specific team, make aGET request to /settings/teams/2026-09-beta/{teamId}/members.
Use the limit and after query parameters to paginate through results.
A successful request returns a paginated list of team members:
Add team members
To add a member to a team, make aPOST request to /settings/teams/2026-09-beta/{teamId}/members.
A successful request returns a
201 response with the new team member entry.
Batch add team members
To add multiple users to a team in a single request, make aPOST request to /settings/teams/2026-09-beta/{teamId}/members/batch.
200 response with the results of each assignment.
Remove a team member
To remove a user from a team, make aDELETE request to /settings/teams/2026-09-beta/{teamId}/members/{userId}.
By default, this removes the user’s primary (DEFAULT) membership. To remove a secondary (EXTRA) membership instead, include the type=EXTRA query parameter:
/settings/teams/2026-09-beta/{teamId}/members/{userId}?type=EXTRA
A successful request returns a 204 No Content response.