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