API ReferenceGuidesChangelog
Dashboards

Get dashboard history by dashboard id

GET
/v1/dashboards/{dashboardId}/history

Authorization

api-key<token>

In: header

Path Parameters

dashboardId*string

Query Parameters

limit?integer
Formatint32
offset?integer
Formatint32

Response Body

application/json

curl -X GET "https://example.com/v1/dashboards/string/history"
{  "histories": [    {      "createdAt": "2019-08-24T14:15:22Z",      "createdById": "string",      "dashboardId": "string",      "default": true,      "description": "string",      "extra": {        "templateVariables": {          "property1": {            "defaultValue": "string",            "field": "string",            "options": [              "string"            ],            "sourceName": "string"          },          "property2": {            "defaultValue": "string",            "field": "string",            "options": [              "string"            ],            "sourceName": "string"          }        },        "templateViews": [          {            "values": {              "property1": "string",              "property2": "string"            }          }        ]      },      "id": 0,      "isPinned": true,      "layouts": {        "responsiveLayouts": {          "property1": {            "layouts": [              {                "h": 0,                "i": "string",                "w": 0,                "x": 0,                "y": 0              }            ]          },          "property2": {            "layouts": [              {                "h": 0,                "i": "string",                "w": 0,                "x": 0,                "y": 0              }            ]          }        }      },      "name": "string",      "ownerId": "string",      "projectId": "string",      "tags": [        "string"      ],      "url": "string",      "version": 0,      "visibility": "INTERNAL"    }  ],  "total": 0}