Skip to main content
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": "ff19d79f-7a15-402c-beb3-3d66e7d6c76b",
    "type": "dashboard_panels",
    "attributes": {
      "dashboard_id": "b3a4eeee-3111-4e0f-852d-d3f1a9c30fa5",
      "name": "Test panel",
      "params": {
        "display": "line_chart",
        "datasets": [
          {
            "collection": "incidents",
            "filter": [],
            "aggregate": {
              "operation": "count",
              "key": "results",
              "cumulative": false
            }
          }
        ]
      },
      "position": null,
      "created_at": "2025-11-26T20:52:15.736-08:00",
      "updated_at": "2025-11-26T20:52:16.609-08:00",
      "data": [
        {
          "name": "Incidents",
          "color": null,
          "data": {
            "2025-11-19": 0,
            "2025-11-20": 0,
            "2025-11-21": 0,
            "2025-11-22": 0,
            "2025-11-23": 0,
            "2025-11-24": 0,
            "2025-11-25": 0,
            "2025-11-26": 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