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": "34ba2fc8-8744-4548-b161-07ee3fe030a0",
"type": "dashboards",
"attributes": {
"team_id": 154,
"user_id": 125,
"name": "Test update dashboard",
"description": null,
"slug": "test-update-dashboard",
"public": false,
"owner": "team",
"range": "Last 30 Days",
"period": "day",
"color": "#FCF2CF",
"icon": "📊",
"auto_refresh": false,
"updated_at": "2025-11-06T13:21:28.727-08:00",
"created_at": "2025-11-06T13:21:23.540-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": "34ba2fc8-8744-4548-b161-07ee3fe030a0",
"type": "dashboards",
"attributes": {
"team_id": 154,
"user_id": 125,
"name": "Test update dashboard",
"description": null,
"slug": "test-update-dashboard",
"public": false,
"owner": "team",
"range": "Last 30 Days",
"period": "day",
"color": "#FCF2CF",
"icon": "📊",
"auto_refresh": false,
"updated_at": "2025-11-06T13:21:28.727-08:00",
"created_at": "2025-11-06T13:21:23.540-08:00"
},
"relationships": {
"panels": {
"data": []
}
}
}
}