PATCH /v1/teams/{id}
Update a Team
Update team properties using JSON Patch
PATCH
PATCH /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.
Update a Team
Update a team’s properties using JSON Merge Patch. You can update by ID.Update by ID
UUID of the team to update.
Body Parameters
Send a JSON object with the fields to update. Only provided fields are changed.Updated display name.
Updated description in Markdown format.
Updated email address for the team.
Whether users can join this team without an invitation.
Updated list of owner references.
Updated list of policy references.
Updated domain FQN.
PATCH /v1/teams/{id}
Returns
Returns the updated team object with the new version number.Response
Unique identifier for the team (UUID format).
Team name.
Fully qualified name (same as name for teams).
Updated description.
Incremented version number.
Error Handling
| Code | Error Type | Description |
|---|---|---|
400 | BAD_REQUEST | Invalid JSON patch or malformed request |
401 | UNAUTHORIZED | Invalid or missing authentication token |
403 | FORBIDDEN | User lacks permission to update this team |
404 | NOT_FOUND | Team with given ID does not exist |
409 | CONFLICT | Concurrent modification detected |