Get list of Snapshots
GET/v1/grafana/api/dashboard/snapshots/
Get list of Snapshots. Please ensure to change the region in the URL to match your account's region.
Request
Query Parameters
query string
limit integer
Responses
- 200
successful query
- application/json
- Schema
- Example (from schema)
Schema
id integer
ID.
name string
Snapshot name.
key string
Snapshot key.
orgId integer
Snapshot orgId.
userId integer
Snapshot user ID.
external boolean
Whether the snapshot is external.
externalUrl string
Snapshot external url.
expires string
Snapshot expiry date.
created string
Snapshot creation date.
updated string
Snapshot update date.
{
"id": 8,
"name": "Home",
"key": "YYYYYYY",
"orgId": 1,
"userId": 1,
"external": true,
"externalUrl": "string",
"expires": "2200-13-32T25:23:23+02:00",
"created": "2200-13-32T28:24:23+02:00",
"updated": "2200-13-32T28:24:23+02:00"
}
Loading...