DELETE
/
v1
/
dashboard_panels
/
{id}
curl --request DELETE \
  --url https://api.rootly.com/v1/dashboard_panels/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "fac531c2-c30c-4d2b-97bf-38689abd23cb",
    "type": "dashboard_panels",
    "attributes": {
      "dashboard_id": "90b988da-4f91-468b-805a-30bcc5eeb9b6",
      "name": "Test panel",
      "params": {
        "display": "line_chart",
        "datasets": [
          {
            "collection": "incidents",
            "filter": [],
            "aggregate": {
              "operation": "count",
              "key": "results",
              "cumulative": false
            }
          }
        ]
      },
      "position": null,
      "created_at": "2025-03-22T22:58:59.117-07:00",
      "updated_at": "2025-03-22T22:59:00.564-07:00",
      "data": [
        {
          "name": "Incidents",
          "color": null,
          "data": {
            "2025-03-15": 0,
            "2025-03-16": 0,
            "2025-03-17": 0,
            "2025-03-18": 0,
            "2025-03-19": 0,
            "2025-03-20": 0,
            "2025-03-21": 0,
            "2025-03-22": 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