Skip to main content
DELETE
DELETE /v1/classifications/{id}

Delete a Classification

Delete a classification by ID or fully qualified name. Supports soft delete (default), hard delete, and restore operations.

Delete by ID

string
required
UUID of the classification to delete.
boolean
default:"false"
Recursively delete all tags within this classification.
boolean
default:"false"
Permanently delete the classification. If false, the classification is soft-deleted and can be restored.

Delete by Name

Use DELETE /v1/classifications/name/{fqn} to delete by fully qualified name.
string
required
Fully qualified name of the classification (e.g., Certification).
boolean
default:"false"
Recursively delete all tags.
boolean
default:"false"
Permanently delete the classification.

Restore a Soft-Deleted Classification

Use PUT /v1/classifications/restore to restore a soft-deleted classification.
string
required
UUID of the soft-deleted classification to restore.
DELETE /v1/classifications/{id}

Returns

Soft delete returns the classification object with deleted: true. Hard delete returns no content (204). Restore returns the restored classification object.

Error Handling