Delete a specific dashboard panel by id
curl --request DELETE \
--url https://api.rootly.com/v1/dashboard_panels/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "52b4d7c8-2020-4ffe-a784-8ec2d777f46f",
"type": "dashboard_panels",
"attributes": {
"dashboard_id": "136fe875-f751-48c6-af46-4d696f2e5303",
"name": "Test panel",
"params": {
"display": "line_chart",
"datasets": [
{
"collection": "incidents",
"filter": [],
"aggregate": {
"operation": "count",
"key": "results",
"cumulative": false
}
}
]
},
"position": null,
"created_at": "2025-09-05T00:35:41.578-07:00",
"updated_at": "2025-09-05T00:35:42.551-07:00",
"data": [
{
"name": "Incidents",
"color": null,
"data": {
"2025-08-29": 0,
"2025-08-30": 0,
"2025-08-31": 0,
"2025-09-01": 0,
"2025-09-02": 0,
"2025-09-03": 0,
"2025-09-04": 0,
"2025-09-05": 0
}
}
]
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
dashboard panel deleted
The response is of type object
.
Was this page helpful?
curl --request DELETE \
--url https://api.rootly.com/v1/dashboard_panels/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "52b4d7c8-2020-4ffe-a784-8ec2d777f46f",
"type": "dashboard_panels",
"attributes": {
"dashboard_id": "136fe875-f751-48c6-af46-4d696f2e5303",
"name": "Test panel",
"params": {
"display": "line_chart",
"datasets": [
{
"collection": "incidents",
"filter": [],
"aggregate": {
"operation": "count",
"key": "results",
"cumulative": false
}
}
]
},
"position": null,
"created_at": "2025-09-05T00:35:41.578-07:00",
"updated_at": "2025-09-05T00:35:42.551-07:00",
"data": [
{
"name": "Incidents",
"color": null,
"data": {
"2025-08-29": 0,
"2025-08-30": 0,
"2025-08-31": 0,
"2025-09-01": 0,
"2025-09-02": 0,
"2025-09-03": 0,
"2025-09-04": 0,
"2025-09-05": 0
}
}
]
}
}
}