Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Response
200 - application/vnd.api+json
dashboard panel deleted
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": "af3ea038-6256-433f-84da-25ebcc00974f",
"type": "dashboard_panels",
"attributes": {
"dashboard_id": "20286ace-ec22-44c9-85ad-1dee7c6e0f3a",
"name": "Test panel",
"params": {
"display": "line_chart",
"datasets": [
{
"collection": "incidents",
"filter": [],
"aggregate": {
"operation": "count",
"key": "results",
"cumulative": false
}
}
]
},
"position": null,
"created_at": "2025-10-15T16:23:34.710-07:00",
"updated_at": "2025-10-15T16:23:36.222-07:00",
"data": [
{
"name": "Incidents",
"color": null,
"data": {
"2025-10-08": 0,
"2025-10-09": 0,
"2025-10-10": 0,
"2025-10-11": 0,
"2025-10-12": 0,
"2025-10-13": 0,
"2025-10-14": 0,
"2025-10-15": 0
}
}
]
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
dashboard panel deleted
Show child attributes
Was this page helpful?
curl --request DELETE \
--url https://api.rootly.com/v1/dashboard_panels/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "af3ea038-6256-433f-84da-25ebcc00974f",
"type": "dashboard_panels",
"attributes": {
"dashboard_id": "20286ace-ec22-44c9-85ad-1dee7c6e0f3a",
"name": "Test panel",
"params": {
"display": "line_chart",
"datasets": [
{
"collection": "incidents",
"filter": [],
"aggregate": {
"operation": "count",
"key": "results",
"cumulative": false
}
}
]
},
"position": null,
"created_at": "2025-10-15T16:23:34.710-07:00",
"updated_at": "2025-10-15T16:23:36.222-07:00",
"data": [
{
"name": "Incidents",
"color": null,
"data": {
"2025-10-08": 0,
"2025-10-09": 0,
"2025-10-10": 0,
"2025-10-11": 0,
"2025-10-12": 0,
"2025-10-13": 0,
"2025-10-14": 0,
"2025-10-15": 0
}
}
]
}
}
}