DELETE
/
v1
/
dashboard_panels
/
{id}
curl --request DELETE \
  --url https://api.rootly.com/v1/dashboard_panels/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "953b863b-1620-40d3-be53-9ed63c3db622",
    "type": "dashboard_panels",
    "attributes": {
      "dashboard_id": "dece674f-48ad-4750-9129-58e1914a2873",
      "name": "Test panel",
      "params": {
        "display": "line_chart",
        "datasets": [
          {
            "collection": "incidents",
            "filter": [],
            "aggregate": {
              "operation": "count",
              "key": "results",
              "cumulative": false
            }
          }
        ]
      },
      "position": null,
      "created_at": "2025-05-29T17:41:29.431-07:00",
      "updated_at": "2025-05-29T17:41:30.897-07:00",
      "data": [
        {
          "name": "Incidents",
          "color": null,
          "data": {
            "2025-05-22": 0,
            "2025-05-23": 0,
            "2025-05-24": 0,
            "2025-05-25": 0,
            "2025-05-26": 0,
            "2025-05-27": 0,
            "2025-05-28": 0,
            "2025-05-29": 0
          }
        }
      ]
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Response

200 - application/vnd.api+json

dashboard panel deleted

The response is of type object.