Retrieves a specific dashboard panel by id
curl --request GET \
--url https://api.rootly.com/v1/dashboard_panels/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "9c5f6045-89ab-4836-ba1b-8a195419d8ef",
"type": "dashboard_panels",
"attributes": {
"dashboard_id": "1b14a63e-2cf5-4505-9cbe-269f172cabe7",
"name": "Test panel",
"params": {
"display": "line_chart",
"datasets": [
{
"collection": "incidents",
"filter": [],
"aggregate": {
"operation": "count",
"key": "results",
"cumulative": false
}
}
]
},
"position": null,
"created_at": "2025-08-21T23:31:06.448-07:00",
"updated_at": "2025-08-21T23:31:06.448-07:00",
"data": [
{
"name": "Incidents",
"color": null,
"data": {
"2025-07-21": 0,
"2025-07-22": 0,
"2025-07-23": 0,
"2025-07-24": 0,
"2025-07-25": 0,
"2025-07-26": 0,
"2025-07-27": 0,
"2025-07-28": 0,
"2025-07-29": 0,
"2025-07-30": 0,
"2025-07-31": 0,
"2025-08-01": 0,
"2025-08-02": 0,
"2025-08-03": 0,
"2025-08-04": 0,
"2025-08-05": 0,
"2025-08-06": 0,
"2025-08-07": 0,
"2025-08-08": 0,
"2025-08-09": 0,
"2025-08-10": 0,
"2025-08-11": 0,
"2025-08-12": 0,
"2025-08-13": 0,
"2025-08-14": 0,
"2025-08-15": 0,
"2025-08-16": 0,
"2025-08-17": 0,
"2025-08-18": 0,
"2025-08-19": 0,
"2025-08-20": 0,
"2025-08-21": 0
}
}
]
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Date range for panel data, ISO8601 timestamps separated by the word 'to'. Ex: '2022-06-19T11:28:46.029Z to 2022-07-18T21:58:46.029Z'.
The time period to group data by. Accepts 'day', 'week', and 'month'
The time zone to use for period
dashboard panel found
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/dashboard_panels/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "9c5f6045-89ab-4836-ba1b-8a195419d8ef",
"type": "dashboard_panels",
"attributes": {
"dashboard_id": "1b14a63e-2cf5-4505-9cbe-269f172cabe7",
"name": "Test panel",
"params": {
"display": "line_chart",
"datasets": [
{
"collection": "incidents",
"filter": [],
"aggregate": {
"operation": "count",
"key": "results",
"cumulative": false
}
}
]
},
"position": null,
"created_at": "2025-08-21T23:31:06.448-07:00",
"updated_at": "2025-08-21T23:31:06.448-07:00",
"data": [
{
"name": "Incidents",
"color": null,
"data": {
"2025-07-21": 0,
"2025-07-22": 0,
"2025-07-23": 0,
"2025-07-24": 0,
"2025-07-25": 0,
"2025-07-26": 0,
"2025-07-27": 0,
"2025-07-28": 0,
"2025-07-29": 0,
"2025-07-30": 0,
"2025-07-31": 0,
"2025-08-01": 0,
"2025-08-02": 0,
"2025-08-03": 0,
"2025-08-04": 0,
"2025-08-05": 0,
"2025-08-06": 0,
"2025-08-07": 0,
"2025-08-08": 0,
"2025-08-09": 0,
"2025-08-10": 0,
"2025-08-11": 0,
"2025-08-12": 0,
"2025-08-13": 0,
"2025-08-14": 0,
"2025-08-15": 0,
"2025-08-16": 0,
"2025-08-17": 0,
"2025-08-18": 0,
"2025-08-19": 0,
"2025-08-20": 0,
"2025-08-21": 0
}
}
]
}
}
}