DELETE /v1/dashboards/{id}
Delete a Dashboard
Delete a dashboard by ID or name, with soft/hard delete options
DELETE
DELETE /v1/dashboards/{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 Dashboard
Delete a dashboard by ID or fully qualified name. Supports soft delete (default), hard delete, and restore operations.Delete by ID
UUID of the dashboard to delete.
Recursively delete child entities.
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.
Fully qualified name of the dashboard (e.g.,
sample_superset.10).Recursively delete child entities.
Permanently delete the dashboard.
Restore a Soft-Deleted Dashboard
UsePUT /v1/dashboards/restore to restore a soft-deleted dashboard.
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.
Error Handling
| Code | Error Type | Description |
|---|---|---|
401 | UNAUTHORIZED | Invalid or missing authentication token |
403 | FORBIDDEN | User lacks permission to delete this dashboard |
404 | NOT_FOUND | Dashboard with given ID or FQN does not exist |