Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Resource UUID
Response
dashboard deleted
Delete a specific dashboard by id
curl --request DELETE \
  --url https://api.rootly.com/v1/dashboards/{id} \
  --header 'Authorization: Bearer <token>'{
  "data": {
    "id": "e9c8a60c-fbe1-42e2-a02f-8d3176a6eac6",
    "type": "dashboards",
    "attributes": {
      "team_id": 154,
      "user_id": 125,
      "name": "Dashboard 10",
      "description": null,
      "slug": "dashboard-10",
      "public": false,
      "owner": "user",
      "range": "Last 30 Days",
      "period": "day",
      "color": "#FCF2CF",
      "icon": "📊",
      "auto_refresh": false,
      "updated_at": "2025-10-30T19:49:10.531-07:00",
      "created_at": "2025-10-30T19:49:07.212-07:00"
    },
    "relationships": {
      "panels": {
        "data": []
      }
    }
  }
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Resource UUID
dashboard deleted
Show child attributes
Was this page helpful?
curl --request DELETE \
  --url https://api.rootly.com/v1/dashboards/{id} \
  --header 'Authorization: Bearer <token>'{
  "data": {
    "id": "e9c8a60c-fbe1-42e2-a02f-8d3176a6eac6",
    "type": "dashboards",
    "attributes": {
      "team_id": 154,
      "user_id": 125,
      "name": "Dashboard 10",
      "description": null,
      "slug": "dashboard-10",
      "public": false,
      "owner": "user",
      "range": "Last 30 Days",
      "period": "day",
      "color": "#FCF2CF",
      "icon": "📊",
      "auto_refresh": false,
      "updated_at": "2025-10-30T19:49:10.531-07:00",
      "created_at": "2025-10-30T19:49:07.212-07:00"
    },
    "relationships": {
      "panels": {
        "data": []
      }
    }
  }
}