Skip to main content
GET
GET /v1/teams/{id}

Retrieve a Team

Get a single team by its unique ID or fully qualified name.

Get by ID

string
required
UUID of the team to retrieve.
string
Comma-separated list of fields to include (e.g., users,parents,children,policies,domains,owners).
string
default:"non-deleted"
Include all, deleted, or non-deleted entities.

Get by Fully Qualified Name

Use GET /v1/teams/name/{fqn} to retrieve by fully qualified name.
string
required
Fully qualified name of the team (e.g., Accounting).
string
Comma-separated list of fields to include: users, parents, children, policies, domains, owners.
string
default:"non-deleted"
Include all, deleted, or non-deleted entities.
GET /v1/teams/{id}

Returns

Returns a team object with all requested fields populated.

Response

string
Unique identifier for the team (UUID format).
string
Team name.
string
Fully qualified name (same as name for teams).
string
Human-readable display name.
string
Type of team (Group, Department, Division, BusinessUnit, Organization).
string
Description of the team in Markdown format.
array
Parent team references. Only included when fields contains parents.
array
Users belonging to this team. Only included when fields contains users.
array
Child team references. Only included when fields contains children.
array
Policy references. Only included when fields contains policies.
array
List of owners. Only included when fields contains owners.
array
Domain assignments. Only included when fields contains domains.
number
Version number for the entity.

Error Handling