Skip to main content
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

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

Delete by Name

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

Restore a Soft-Deleted Dashboard

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

Returns

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

Error Handling