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": "2d0333ee-b9bd-4f0e-baf2-bdbdce19293f",
"type": "dashboards",
"attributes": {
"team_id": 104,
"user_id": 82,
"name": "Test update dashboard",
"description": null,
"slug": "test-update-dashboard",
"public": false,
"owner": "team",
"range": "Last 30 Days",
"period": "day",
"color": "#E9E2FF",
"icon": "📊",
"auto_refresh": false,
"updated_at": "2025-08-01T01:55:27.199-07:00",
"created_at": "2025-08-01T01:55:24.642-07:00"
},
"relationships": {
"panels": {
"data": []
}
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
dashboard updated
The response is of type object
.
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": "2d0333ee-b9bd-4f0e-baf2-bdbdce19293f",
"type": "dashboards",
"attributes": {
"team_id": 104,
"user_id": 82,
"name": "Test update dashboard",
"description": null,
"slug": "test-update-dashboard",
"public": false,
"owner": "team",
"range": "Last 30 Days",
"period": "day",
"color": "#E9E2FF",
"icon": "📊",
"auto_refresh": false,
"updated_at": "2025-08-01T01:55:27.199-07:00",
"created_at": "2025-08-01T01:55:24.642-07:00"
},
"relationships": {
"panels": {
"data": []
}
}
}
}