Skip to main content
PATCH
PATCH /v1/dashboards/{id}

Update a Dashboard

Update a dashboard’s properties using JSON Merge Patch. You can update by ID or by fully qualified name.

Update by ID

string
required
UUID of the dashboard to update.

Update by Name

Use PATCH /v1/dashboards/name/{fqn} to update by fully qualified name.
string
required
Fully qualified name of the dashboard (e.g., sample_superset.10).

Body Parameters

Send a JSON object with the fields to update. Only provided fields are changed.
string
Updated description in Markdown format.
string
Updated display name.
string
Updated source URL.
array
Updated list of chart references.
array
Updated list of owner references.
array
Updated classification tags.
string
Updated domain FQN.
object
Updated custom property values.
PATCH /v1/dashboards/{id}

Returns

Returns the updated dashboard object with the new version number.

Response

string
Unique identifier for the dashboard (UUID format).
string
Dashboard name.
string
Fully qualified name in format service.dashboardName.
string
Updated description.
number
Incremented version number.

Error Handling