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