Skip to main content
Monitoring & Collection/Grafana Integration
GETGrafanaSince 1.0SynchronousAuth Required

ListImportedDashboards

List all dashboards that have been imported into a tenant's Grafana organization

Execution Availability

Try It Out

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

Query Parameters

Request Inputs

Query Parameters

  • tenantIdString

    Filter imported dashboards by tenant UUID Filter imported dashboards by tenant UUID

Responses

200 OK

On success, this API returns the following response structure.

  • itemsList

    Collection of result items

    Example: (nested array)

    • idString

      Unique identifier of the imported dashboard record

      Example: imported-001-abc

    • templateIdString

      UUID of the source template

      Example: tpl-vm-overview

    • grafanaUidString

      Grafana dashboard UID assigned after import

      Example: abcd1234efgh

    • grafanaUrlString

      Direct URL to the imported dashboard in Grafana

      Example: http://grafana.example.com/d/abcd1234efgh

    • datasourceIdString

      UUID of the datasource linked to this dashboard

      Example: ds-001-abc

    • tenantIdString

      UUID of the tenant that imported this dashboard

      Example: tenant-001-xyz

    • importedAtString

      Imported at

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

  • totalInteger

    Total number of imported dashboards

    Example: 5

  • limitInteger

    Page size limit

    Example: 20

  • offsetInteger

    Pagination offset

    Example: 20

Endpoint

GET/api/v1/monitoring/grafana/dashboards

/api/v1/monitoring/grafana/dashboards

Operation ID

ListImportedDashboards

Permalink

Request Example

curl -X GET '{host}/api/v1/monitoring/grafana/dashboards' -H 'Authorization: Bearer {token}'

Response Example

200
{
  "items": [
    {}
  ],
  "total": 5,
  "limit": 20,
  "offset": 20
}

Change History

This API has no change history records yet.

View all change history