Skip to main content
DELETE
DELETE /v1/services/dashboardServices/{id}

Delete a Dashboard Service

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

Delete by ID

string
required
UUID of the dashboard service to delete.
boolean
default:"false"
Recursively delete child entities (dashboards, charts).
boolean
default:"false"
Permanently delete the dashboard service. If false, the service is soft-deleted and can be restored.

Delete by Name

Use DELETE /v1/services/dashboardServices/name/{fqn} to delete by fully qualified name.
string
required
Fully qualified name of the dashboard service (e.g., sample_looker).
boolean
default:"false"
Recursively delete child entities.
boolean
default:"false"
Permanently delete the dashboard service.

Restore a Soft-Deleted Dashboard Service

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

Returns

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

Error Handling