Delete a specific dashboard by id
curl --request DELETE \
--url https://api.rootly.com/v1/dashboards/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "3c5546dd-5cb1-4da2-9299-d7ab787a2ee2",
"type": "dashboards",
"attributes": {
"team_id": 105,
"user_id": 82,
"name": "Dashboard 10",
"description": null,
"slug": "dashboard-10",
"public": false,
"owner": "user",
"range": "Last 30 Days",
"period": "day",
"color": "#E9E2FF",
"icon": "📊",
"auto_refresh": false,
"updated_at": "2025-08-12T10:45:20.096-07:00",
"created_at": "2025-08-12T10:45:15.711-07:00"
},
"relationships": {
"panels": {
"data": []
}
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
dashboard deleted
The response is of type object
.
Was this page helpful?
curl --request DELETE \
--url https://api.rootly.com/v1/dashboards/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "3c5546dd-5cb1-4da2-9299-d7ab787a2ee2",
"type": "dashboards",
"attributes": {
"team_id": 105,
"user_id": 82,
"name": "Dashboard 10",
"description": null,
"slug": "dashboard-10",
"public": false,
"owner": "user",
"range": "Last 30 Days",
"period": "day",
"color": "#E9E2FF",
"icon": "📊",
"auto_refresh": false,
"updated_at": "2025-08-12T10:45:20.096-07:00",
"created_at": "2025-08-12T10:45:15.711-07:00"
},
"relationships": {
"panels": {
"data": []
}
}
}
}