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

id
string
required
UUID of the dashboard service to delete.
recursive
boolean
default:"false"
Recursively delete child entities (dashboards, charts).
hardDelete
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.
fqn
string
required
Fully qualified name of the dashboard service (e.g., sample_looker).
recursive
boolean
default:"false"
Recursively delete child entities.
hardDelete
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.
id
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