Retrieves a specific dashboard by id
curl --request GET \
--url https://api.rootly.com/v1/dashboards/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "30b557b0-7b9c-4caf-bdc5-664debdc7bcd",
"type": "dashboards",
"attributes": {
"team_id": 104,
"user_id": 82,
"name": "Dashboard 10",
"description": null,
"slug": "dashboard-10",
"public": false,
"owner": "team",
"range": "Last 30 Days",
"period": "day",
"color": "#FAE6E8",
"icon": "📊",
"auto_refresh": false,
"updated_at": "2025-07-20T00:37:34.254-07:00",
"created_at": "2025-07-20T00:37:34.254-07:00"
},
"relationships": {
"panels": {
"data": []
}
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
comma separated if needed. eg: panels
panels
dashboard found
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/dashboards/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "30b557b0-7b9c-4caf-bdc5-664debdc7bcd",
"type": "dashboards",
"attributes": {
"team_id": 104,
"user_id": 82,
"name": "Dashboard 10",
"description": null,
"slug": "dashboard-10",
"public": false,
"owner": "team",
"range": "Last 30 Days",
"period": "day",
"color": "#FAE6E8",
"icon": "📊",
"auto_refresh": false,
"updated_at": "2025-07-20T00:37:34.254-07:00",
"created_at": "2025-07-20T00:37:34.254-07:00"
},
"relationships": {
"panels": {
"data": []
}
}
}
}