DELETE
/
v1
/
dashboards
/
{id}
curl --request DELETE \
  --url https://api.rootly.com/v1/dashboards/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "46221af5-d50a-4b2f-a2d4-333450ddad74",
    "type": "dashboards",
    "attributes": {
      "team_id": 69,
      "user_id": 71,
      "name": "Dashboard 10",
      "description": null,
      "slug": "dashboard-10",
      "public": false,
      "owner": "user",
      "range": "Last 30 Days",
      "period": "day",
      "color": "#E9E2FF",
      "icon": "📊",
      "auto_refresh": false,
      "updated_at": "2025-05-08T00:17:40.709-07:00",
      "created_at": "2025-05-08T00:17:35.402-07:00"
    },
    "relationships": {
      "panels": {
        "data": []
      }
    }
  }
}

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 deleted

The response is of type object.