Get dashboard by uid
GET/v1/grafana/api/dashboards/uid/:uid
Will return the dashboard given the dashboard unique identifier (uid). Information about the unique identifier of a folder containing the requested dashboard might be found in the metadata. Please ensure to change the region in the URL to match your account's region.
Request
Path Parameters
Responses
- 200
success
- application/json
- Schema
- Example (from schema)
Schema
dashboard object
The complete dashboard model, id = null
to create a new dashboard.
Set id = null
to create a new dashboard.
Optional unique identifier when creating a dashboard, id = null
will generate a new uid.
Dashboard title.
Dashboard tags.
Timezone.
Schema version.
Dashboard version.
meta object
Information about the unique identifier of a folder containing the requested dashboard.
Whether the dashboard is starred.
Dashboard url.
Dashboard folder id.
The unique identifier (uid) of a folder to search in for dashboards. You cannot use General
folder or the folder generated by logz.io - Logz.io Dashboards
- to place your alerts.
Dashboard slug.
{
"dashboard": {
"id": 1,
"uid": 1,
"title": "Production Overview",
"tags": [
"tag3"
],
"timezone": "browser",
"schemaVersion": 1,
"version": 0
},
"meta": {
"isStarred": true,
"url": "/d/cIBgcSjkk/production-overview",
"folderId": 2,
"folderUid": "l3KqBxCMz",
"slug": "production-overview"
}
}