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