DELETE /v1/classifications/{id}
Delete a Classification
Delete a classification by ID or name, with soft/hard delete options
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
UseDELETE /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
UsePUT /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 withdeleted: true. Hard delete returns no content (204). Restore returns the restored classification object.