DELETE /v1/charts/{id}
Delete a Chart
Soft delete or permanently remove a chart entity by UUID or fully qualified name, controlling cascade behavior and maintaining audit trails via the Collate REST API.
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
string
required
UUID of the chart to delete.
boolean
default:"false"
Recursively delete child entities.
boolean
default:"false"
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.
string
required
Fully qualified name of the chart (e.g.,
sample_superset.114).boolean
default:"false"
Recursively delete child entities.
boolean
default:"false"
Permanently delete the chart.
Restore a Soft-Deleted Chart
UsePUT /v1/charts/restore to restore a soft-deleted chart.
string
required
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.