DELETE /v1/glossaries/{id}
Delete a Glossary
Delete a glossary by ID or name, with soft/hard delete options
DELETE
DELETE /v1/glossaries/{id}
Delete a Glossary
Delete a glossary by ID or fully qualified name. Supports soft delete (default), hard delete, and restore operations.Delete by ID
string
required
UUID of the glossary to delete.
boolean
default:"false"
Recursively delete all glossary terms within this glossary.
boolean
default:"false"
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.
string
required
Fully qualified name of the glossary (e.g.,
BusinessGlossary).boolean
default:"false"
Recursively delete all glossary terms.
boolean
default:"false"
Permanently delete the glossary.
Restore a Soft-Deleted Glossary
UsePUT /v1/glossaries/restore to restore a soft-deleted glossary.
string
required
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.