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": "556f86c0-a538-4a84-85f7-491f468a043b",
"type": "dashboards",
"attributes": {
"team_id": 183,
"user_id": 130,
"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-12-24T09:24:22.955-08:00",
"created_at": "2025-12-24T09:24:21.230-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": "556f86c0-a538-4a84-85f7-491f468a043b",
"type": "dashboards",
"attributes": {
"team_id": 183,
"user_id": 130,
"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-12-24T09:24:22.955-08:00",
"created_at": "2025-12-24T09:24:21.230-08:00"
},
"relationships": {
"panels": {
"data": []
}
}
}
}