Skip to main content
PUT
/
v1
/
dashboards
/
{id}
Update a dashboard
curl --request PUT \
  --url https://api.rootly.com/v1/dashboards/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/vnd.api+json' \
  --data '{
  "data": {
    "type": "dashboards",
    "attributes": {
      "name": "<string>",
      "description": "<string>",
      "owner": "user",
      "public": true,
      "range": "<string>",
      "auto_refresh": true,
      "color": "#FCF2CF",
      "icon": "<string>",
      "period": "day"
    }
  }
}'
{
  "data": {
    "id": "ab44cdad-b276-4e35-a84e-6b7b55422a30",
    "type": "dashboards",
    "attributes": {
      "team_id": 156,
      "user_id": 127,
      "name": "Test update dashboard",
      "description": null,
      "slug": "test-update-dashboard",
      "public": false,
      "owner": "team",
      "range": "Last 30 Days",
      "period": "day",
      "color": "#FAE6E8",
      "icon": "📊",
      "auto_refresh": false,
      "updated_at": "2025-11-27T00:07:13.476-08:00",
      "created_at": "2025-11-27T00:07:10.133-08: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

Body

application/vnd.api+json
data
object
required

Response

dashboard updated

data
object
required