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": "82fc4ced-568f-4f74-a5e7-30d9ee80d95e",
"type": "dashboard_panels",
"attributes": {
"dashboard_id": "6f8a19b8-ff6b-4957-888b-f3459e689e71",
"name": "Test panel",
"params": {
"display": "line_chart",
"datasets": [
{
"collection": "incidents",
"filter": [],
"aggregate": {
"operation": "count",
"key": "results",
"cumulative": false
}
}
]
},
"position": null,
"created_at": "2025-07-25T22:36:03.085-07:00",
"updated_at": "2025-07-25T22:36:04.321-07:00",
"data": [
{
"name": "Incidents",
"color": null,
"data": {
"2025-07-18": 0,
"2025-07-19": 0,
"2025-07-20": 0,
"2025-07-21": 0,
"2025-07-22": 0,
"2025-07-23": 0,
"2025-07-24": 0,
"2025-07-25": 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": "82fc4ced-568f-4f74-a5e7-30d9ee80d95e",
"type": "dashboard_panels",
"attributes": {
"dashboard_id": "6f8a19b8-ff6b-4957-888b-f3459e689e71",
"name": "Test panel",
"params": {
"display": "line_chart",
"datasets": [
{
"collection": "incidents",
"filter": [],
"aggregate": {
"operation": "count",
"key": "results",
"cumulative": false
}
}
]
},
"position": null,
"created_at": "2025-07-25T22:36:03.085-07:00",
"updated_at": "2025-07-25T22:36:04.321-07:00",
"data": [
{
"name": "Incidents",
"color": null,
"data": {
"2025-07-18": 0,
"2025-07-19": 0,
"2025-07-20": 0,
"2025-07-21": 0,
"2025-07-22": 0,
"2025-07-23": 0,
"2025-07-24": 0,
"2025-07-25": 0
}
}
]
}
}
}