DELETE
/
v1
/
dashboard_panels
/
{id}
Delete a dashboard panel
curl --request DELETE \
  --url https://api.rootly.com/v1/dashboard_panels/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "027391df-8870-44a5-a79a-2521c617362c",
    "type": "dashboard_panels",
    "attributes": {
      "dashboard_id": "2dac46de-1718-41ac-a86c-2ca463f24029",
      "name": "Test panel",
      "params": {
        "display": "line_chart",
        "datasets": [
          {
            "collection": "incidents",
            "filter": [],
            "aggregate": {
              "operation": "count",
              "key": "results",
              "cumulative": false
            }
          }
        ]
      },
      "position": null,
      "created_at": "2025-08-15T07:11:10.527-07:00",
      "updated_at": "2025-08-15T07:11:11.422-07:00",
      "data": [
        {
          "name": "Incidents",
          "color": null,
          "data": {
            "2025-08-08": 0,
            "2025-08-09": 0,
            "2025-08-10": 0,
            "2025-08-11": 0,
            "2025-08-12": 0,
            "2025-08-13": 0,
            "2025-08-14": 0,
            "2025-08-15": 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.