Skip to main content
Monitoring & Collection/Grafana Dashboards
POSTGrafanaSince 1.0SynchronousAuth Required

RestoreDashboard

Restore a previously soft-deleted dashboard

Execution Availability

Try It Out

Submit a mock request using the current auth context and example-driven inputs.

Path Parameters

Query Parameters

Request Inputs

Path Parameters

  • idStringRequired

    UUID of the dashboard to restore

Query Parameters

  • tenantIdString

    UUID of the tenant owning the dashboard UUID of the tenant owning the dashboard

Responses

200 OK

On success, this API returns the following response structure.

  • idString

    Unique identifier of the dashboard

    Example: dash-001-abc

  • tenantIdString

    UUID of the tenant owning this dashboard

    Example: tenant-001-xyz

  • titleString

    Display title of the dashboard

    Example: VM Performance Overview

  • categoryString

    Category the dashboard belongs to

    Example: compute

  • layoutList

    Layout for this resource

    Example: (nested array)

    • panelIdString

      Unique identifier of the panel within the dashboard

      Example: panel-cpu-001

    • xInteger

      Horizontal grid position of the panel

      Example: 20

    • yInteger

      Vertical grid position of the panel

      Example: 20

    • wInteger

      Width of the panel in grid units

      Example: 12

    • hInteger

      Height of the panel in grid units

      Example: 8

  • createdByString

    User ID of the dashboard creator

    Example: user-001-abc

  • createdAtString

    Created at

    Example: 2026-01-15T08:00:00Z

  • updatedAtString

    Updated at

    Example: 2026-01-15T08:00:00Z

  • deletedAtString

    Deleted at

    Example: 2026-01-15T08:00:00Z

  • versionInteger

    Current version number of this dashboard

    Example: 3

Endpoint

POST/api/v1/monitoring/dashboards/{id}/restore

/api/v1/monitoring/dashboards/{id}/restore

Operation ID

RestoreDashboard

Permalink

Request Example

curl -X POST '{host}/api/v1/monitoring/dashboards/{id}/restore' -H 'Authorization: Bearer {token}' -H 'Content-Type: application/json' -d '{}'

Response Example

200
{
  "id": "dash-001-abc",
  "tenantId": "tenant-001-xyz",
  "title": "VM Performance Overview",
  "category": "compute",
  "layout": [
    {}
  ],
  "createdBy": "user-001-abc",
  "createdAt": "example",
  "updatedAt": "example"
}

Change History

This API has no change history records yet.

View all change history