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