Get all dashboard versions
GET/v1/grafana/api/dashboards/id/:dashboardId/versions
Gets all existing dashboard versions for the dashboard with the given dashboardId. Please ensure to change the region in the URL to match your account's region.
Request
Path Parameters
dashboardId integerrequired
Query Parameters
limit integer
start integer
Responses
- 200
success
- application/json
- Schema
- Example (from schema)
Schema
id integer
ID.
dashboardId integer
Dashboard ID.
parentVersion integer
Dashboard parent version.
restoredFrom integer
Restored from.
version integer
Version.
created integer
Date created.
createdBy string
Created by.
message string
Message.
{
"id": 1,
"dashboardId": 2,
"parentVersion": 0,
"restoredFrom": 0,
"version": 2,
"created": "2017-06-08T17:24:33-04:00\"",
"createdBy": "admin",
"message": "Initial save"
}
Loading...