DELETE /v1/mlmodels/{id}
Delete an ML Model
Soft delete or permanently remove an ML model entity by UUID or fully qualified name, controlling cascade behavior and maintaining audit trails via the Collate REST API.
DELETE
DELETE /v1/mlmodels/{id}
Delete an ML Model
Delete an ML model by ID or fully qualified name. Supports soft delete (default), hard delete, and restore operations.Delete by ID
string
required
UUID of the ML model to delete.
boolean
default:"false"
Recursively delete child entities.
boolean
default:"false"
Permanently delete the ML model. If
false, the ML model is soft-deleted and can be restored.Delete by Name
UseDELETE /v1/mlmodels/name/{fqn} to delete by fully qualified name.
string
required
Fully qualified name of the ML model (e.g.,
mlflow_svc.customer_segmentation).boolean
default:"false"
Recursively delete child entities.
boolean
default:"false"
Permanently delete the ML model.
Restore a Soft-Deleted ML Model
UsePUT /v1/mlmodels/restore to restore a soft-deleted ML model.
string
required
UUID of the soft-deleted ML model to restore.
DELETE /v1/mlmodels/{id}
Returns
Soft delete returns the ML model object withdeleted: true. Hard delete returns no content (204). Restore returns the restored ML model object.