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