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": "a484eed1-2639-4aa4-ac0f-a47811c14070",
    "type": "dashboard_panels",
    "attributes": {
      "dashboard_id": "b9770fc2-05a9-40e0-b762-fa51ba3070e2",
      "name": "Test panel",
      "params": {
        "display": "line_chart",
        "datasets": [
          {
            "collection": "incidents",
            "filter": [],
            "aggregate": {
              "operation": "count",
              "key": "results",
              "cumulative": false
            }
          }
        ]
      },
      "position": null,
      "created_at": "2025-09-25T07:03:38.285-07:00",
      "updated_at": "2025-09-25T07:03:39.680-07:00",
      "data": [
        {
          "name": "Incidents",
          "color": null,
          "data": {
            "2025-09-18": 0,
            "2025-09-19": 0,
            "2025-09-20": 0,
            "2025-09-21": 0,
            "2025-09-22": 0,
            "2025-09-23": 0,
            "2025-09-24": 0,
            "2025-09-25": 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

data
object
required