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

Delete a Chart

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

Delete by ID

id
string
required
UUID of the chart to delete.
recursive
boolean
default:"false"
Recursively delete child entities.
hardDelete
boolean
default:"false"
Permanently delete the chart. If false, the chart is soft-deleted and can be restored.

Delete by Name

Use DELETE /v1/charts/name/{fqn} to delete by fully qualified name.
fqn
string
required
Fully qualified name of the chart (e.g., sample_superset.114).
recursive
boolean
default:"false"
Recursively delete child entities.
hardDelete
boolean
default:"false"
Permanently delete the chart.

Restore a Soft-Deleted Chart

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

Returns

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

Error Handling