Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Resource UUID
Body
application/vnd.api+json
Response
dashboard updated
Update a specific dashboard by id
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": []
}
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Resource UUID
Show child attributes
dashboard updated
Show child attributes
Was this page helpful?
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": []
}
}
}
}