GET /v1/teams/{id}
Retrieve a Team
Get a team by ID or fully qualified name
GET
GET /v1/teams/{id}
Documentation Index
Fetch the complete documentation index at: https://openmetadata-codex-audit-docs-codebase-alignment.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Retrieve a Team
Get a single team by its unique ID or fully qualified name.Get by ID
UUID of the team to retrieve.
Comma-separated list of fields to include (e.g.,
users,parents,children,policies,domains,owners).Include
all, deleted, or non-deleted entities.Get by Fully Qualified Name
UseGET /v1/teams/name/{fqn} to retrieve by fully qualified name.
Fully qualified name of the team (e.g.,
Accounting).Comma-separated list of fields to include:
users, parents, children, policies, domains, owners.Include
all, deleted, or non-deleted entities.GET /v1/teams/{id}
Returns
Returns a team object with all requested fields populated.Response
Unique identifier for the team (UUID format).
Team name.
Fully qualified name (same as name for teams).
Human-readable display name.
Type of team (
Group, Department, Division, BusinessUnit, Organization).Description of the team in Markdown format.
Parent team references. Only included when
fields contains parents.Users belonging to this team. Only included when
fields contains users.Child team references. Only included when
fields contains children.Policy references. Only included when
fields contains policies.List of owners. Only included when
fields contains owners.Domain assignments. Only included when
fields contains domains.Version number for the entity.
Error Handling
| Code | Error Type | Description |
|---|---|---|
401 | UNAUTHORIZED | Invalid or missing authentication token |
403 | FORBIDDEN | User lacks permission to view this team |
404 | NOT_FOUND | Team with given ID or FQN does not exist |