List dashboards
curl --request GET \
--url https://api.rootly.com/v1/dashboards \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"id": "<string>",
"type": "dashboards",
"attributes": {
"team_id": 123,
"user_id": 123,
"name": "<string>",
"description": "<string>",
"owner": "user",
"public": true,
"range": "<string>",
"period": "<string>",
"auto_refresh": true,
"color": "#FCF2CF",
"icon": "<string>",
"created_at": "<string>",
"updated_at": "<string>"
}
}
],
"links": {
"self": "<string>",
"first": "<string>",
"prev": "<string>",
"next": "<string>",
"last": "<string>"
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
comma separated if needed. eg: panels
panels
success
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/dashboards \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"id": "<string>",
"type": "dashboards",
"attributes": {
"team_id": 123,
"user_id": 123,
"name": "<string>",
"description": "<string>",
"owner": "user",
"public": true,
"range": "<string>",
"period": "<string>",
"auto_refresh": true,
"color": "#FCF2CF",
"icon": "<string>",
"created_at": "<string>",
"updated_at": "<string>"
}
}
],
"links": {
"self": "<string>",
"first": "<string>",
"prev": "<string>",
"next": "<string>",
"last": "<string>"
}
}