DELETE
/
v1
/
dashboard_panels
/
{id}
curl --request DELETE \
  --url https://api.rootly.com/v1/dashboard_panels/%7Bid%7D \
  --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
{
  "data": {
    "id": "006db794-37aa-4086-af49-4e86fc23a537",
    "type": "dashboard_panels",
    "attributes": {
      "dashboard_id": "eedb49db-761a-4f83-b143-512ccc9f1320",
      "name": "Test panel",
      "params": {
        "display": "line_chart",
        "datasets": [
          {
            "collection": "incidents",
            "filter": [],
            "aggregate": {
              "operation": "count",
              "key": "results",
              "cumulative": false
            }
          }
        ]
      },
      "position": null,
      "created_at": "2025-03-13T11:59:55.750-07:00",
      "updated_at": "2025-03-13T11:59:57.214-07:00",
      "data": [
        {
          "name": "Incidents",
          "color": null,
          "data": {
            "2025-03-06": 0,
            "2025-03-07": 0,
            "2025-03-08": 0,
            "2025-03-09": 0,
            "2025-03-10": 0,
            "2025-03-11": 0,
            "2025-03-12": 0,
            "2025-03-13": 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