DELETE
/
v1
/
dashboard_panels
/
{id}
curl --request DELETE \
  --url https://api.rootly.com/v1/dashboard_panels/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "b91ee63f-1b9c-488d-9bb1-43d232225e67",
    "type": "dashboard_panels",
    "attributes": {
      "dashboard_id": "84433f47-2eb6-4c6a-94e7-e917036081aa",
      "name": "Test panel",
      "params": {
        "display": "line_chart",
        "datasets": [
          {
            "collection": "incidents",
            "filter": [],
            "aggregate": {
              "operation": "count",
              "key": "results",
              "cumulative": false
            }
          }
        ]
      },
      "position": null,
      "created_at": "2025-06-20T12:40:17.462-07:00",
      "updated_at": "2025-06-20T12:40:19.461-07:00",
      "data": [
        {
          "name": "Incidents",
          "color": null,
          "data": {
            "2025-06-13": 0,
            "2025-06-14": 0,
            "2025-06-15": 0,
            "2025-06-16": 0,
            "2025-06-17": 0,
            "2025-06-18": 0,
            "2025-06-19": 0,
            "2025-06-20": 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.