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