Get home dashboard
GET/v1/grafana/api/dashboards/home
Will return the home dashboard. Please ensure to change the region in the URL to match your account's region.
Request
Responses
- 200
success
- application/json
- Schema
- Example (from schema)
Schema
dashboard object
The complete dashboard model, id = null
to create a new dashboard.
editable boolean
hideControls integer
nav object
enable boolean
type string
style string
tags object
tag string
templating object
list string[]
time object
timezone string
title string
version integer
meta object
The complete dashboard model, id = null
to create a new dashboard.
isHome boolean
canSave boolean
canEdit boolean
canStar boolean
url string
expires string
created string
{
"dashboard": {
"editable": false,
"hideControls": false,
"nav": {
"enable": false,
"type": "timepicker"
},
"style": "dark",
"tags": {
"tag": "outage"
},
"templating": {
"list": [
"string"
]
},
"time": {},
"timezone": "browser",
"title": "Home",
"version": 2
},
"meta": {
"isHome": true,
"canSave": false,
"canEdit": false,
"canStar": false,
"url": "url",
"expires": "0001-01-01T00:00:00Z",
"created": "0001-01-01T00:00:00Z"
}
}
Loading...