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": "fb5353db-ee22-4e8b-83bc-d30c6c6d8526",
"type": "dashboard_panels",
"attributes": {
"dashboard_id": "31910723-dab6-4953-9066-9570b086d033",
"name": "Test panel",
"params": {
"display": "line_chart",
"datasets": [
{
"collection": "incidents",
"filter": [],
"aggregate": {
"operation": "count",
"key": "results",
"cumulative": false
}
}
]
},
"position": null,
"created_at": "2025-12-22T14:53:10.785-08:00",
"updated_at": "2025-12-22T14:53:10.785-08:00",
"data": [
{
"name": "Incidents",
"color": null,
"data": {
"2025-11-22": 0,
"2025-11-23": 0,
"2025-11-24": 0,
"2025-11-25": 0,
"2025-11-26": 0,
"2025-11-27": 0,
"2025-11-28": 0,
"2025-11-29": 0,
"2025-11-30": 0,
"2025-12-01": 0,
"2025-12-02": 0,
"2025-12-03": 0,
"2025-12-04": 0,
"2025-12-05": 0,
"2025-12-06": 0,
"2025-12-07": 0,
"2025-12-08": 0,
"2025-12-09": 0,
"2025-12-10": 0,
"2025-12-11": 0,
"2025-12-12": 0,
"2025-12-13": 0,
"2025-12-14": 0,
"2025-12-15": 0,
"2025-12-16": 0,
"2025-12-17": 0,
"2025-12-18": 0,
"2025-12-19": 0,
"2025-12-20": 0,
"2025-12-21": 0,
"2025-12-22": 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
Show child attributes
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/dashboard_panels/{id} \
--header 'Authorization: Bearer <token>'{
"data": {
"id": "fb5353db-ee22-4e8b-83bc-d30c6c6d8526",
"type": "dashboard_panels",
"attributes": {
"dashboard_id": "31910723-dab6-4953-9066-9570b086d033",
"name": "Test panel",
"params": {
"display": "line_chart",
"datasets": [
{
"collection": "incidents",
"filter": [],
"aggregate": {
"operation": "count",
"key": "results",
"cumulative": false
}
}
]
},
"position": null,
"created_at": "2025-12-22T14:53:10.785-08:00",
"updated_at": "2025-12-22T14:53:10.785-08:00",
"data": [
{
"name": "Incidents",
"color": null,
"data": {
"2025-11-22": 0,
"2025-11-23": 0,
"2025-11-24": 0,
"2025-11-25": 0,
"2025-11-26": 0,
"2025-11-27": 0,
"2025-11-28": 0,
"2025-11-29": 0,
"2025-11-30": 0,
"2025-12-01": 0,
"2025-12-02": 0,
"2025-12-03": 0,
"2025-12-04": 0,
"2025-12-05": 0,
"2025-12-06": 0,
"2025-12-07": 0,
"2025-12-08": 0,
"2025-12-09": 0,
"2025-12-10": 0,
"2025-12-11": 0,
"2025-12-12": 0,
"2025-12-13": 0,
"2025-12-14": 0,
"2025-12-15": 0,
"2025-12-16": 0,
"2025-12-17": 0,
"2025-12-18": 0,
"2025-12-19": 0,
"2025-12-20": 0,
"2025-12-21": 0,
"2025-12-22": 0
}
}
]
}
}
}