Teams
A Team is an organizational unit used to group users and control access to data assets. Teams support a hierarchical structure that mirrors your organization.Entity schema follows the OpenMetadata Standard.
Entity Hierarchy
Teams can be nested in a strict hierarchy:Team Types
| Type | Description |
|---|---|
Organization | Top-level entity representing the entire organization |
BusinessUnit | A major business unit within the organization |
Division | A division within a business unit |
Department | A department within a division |
Group | The most granular team type, typically used for day-to-day access control |
Fully Qualified Name
The FQN format for a team is simply:Accounting
API Endpoints
| Method | Endpoint | Description |
|---|---|---|
POST | /v1/teams | Create a team |
GET | /v1/teams | List teams |
GET | /v1/teams/{id} | Get by ID |
GET | /v1/teams/name/{fqn} | Get by FQN |
PATCH | /v1/teams/{id} | Update by ID |
DELETE | /v1/teams/{id} | Delete by ID |
PUT | /v1/teams/restore | Restore soft-deleted team |
GET | /v1/teams/{id}/versions | List versions |
GET | /v1/teams/{id}/versions/{version} | Get specific version |