DELETE /v1/teams/{id}
Delete a Team
Delete a team by ID, with soft/hard delete options
DELETE
DELETE /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.
Delete a Team
Delete a team by ID. Supports soft delete (default), hard delete, and restore operations.Delete by ID
UUID of the team to delete.
Recursively delete child entities.
Permanently delete the team. If
false, the team is soft-deleted and can be restored.Restore a Soft-Deleted Team
UsePUT /v1/teams/restore to restore a soft-deleted team.
UUID of the soft-deleted team to restore.
DELETE /v1/teams/{id}
Returns
Soft delete returns the team object withdeleted: true. Hard delete returns no content (204). Restore returns the restored team object.
Error Handling
| Code | Error Type | Description |
|---|---|---|
401 | UNAUTHORIZED | Invalid or missing authentication token |
403 | FORBIDDEN | User lacks permission to delete this team |
404 | NOT_FOUND | Team with given ID does not exist |