POST
/
v1
/
dashboards
/
{id}
/
set_default
Sets dashboard to user default
curl --request POST \
  --url https://api.rootly.com/v1/dashboards/{id}/set_default \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "cf91c0af-8133-4248-848d-13a9c3b4b400",
    "type": "dashboards",
    "attributes": {
      "team_id": 108,
      "user_id": 98,
      "name": "Dashboard 10",
      "description": null,
      "slug": "dashboard-10",
      "public": false,
      "owner": "team",
      "range": "Last 30 Days",
      "period": "day",
      "color": "#D7F5E1",
      "icon": "๐Ÿ“Š",
      "auto_refresh": false,
      "updated_at": "2025-08-29T15:07:37.619-07:00",
      "created_at": "2025-08-29T15:07:37.619-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
required

Resource UUID

Response

200
application/vnd.api+json

dashboard found by slug

The response is of type object.