Creates a new dashboard from provided data
curl --request POST \
--url https://api.rootly.com/v1/dashboards \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '
{
"data": {
"type": "dashboards",
"attributes": {
"name": "<string>",
"owner": "user",
"description": "<string>",
"public": true,
"range": "<string>",
"auto_refresh": true,
"color": "#FCF2CF",
"icon": "<string>",
"period": "day"
}
}
}
'{
"data": {
"id": "b74a67c1-3edc-432b-9a57-48efa3ed9392",
"type": "dashboards",
"attributes": {
"team_id": 183,
"user_id": 130,
"name": "Test dashboard",
"description": null,
"slug": "test-dashboard",
"public": false,
"owner": "user",
"range": "Last 30 Days",
"period": "day",
"color": "#FAE6E8",
"icon": "📊",
"auto_refresh": false,
"updated_at": "2025-12-24T09:24:22.025-08:00",
"created_at": "2025-12-24T09:24:22.025-08:00"
},
"relationships": {
"panels": {
"data": []
}
}
}
}Was this page helpful?
curl --request POST \
--url https://api.rootly.com/v1/dashboards \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '
{
"data": {
"type": "dashboards",
"attributes": {
"name": "<string>",
"owner": "user",
"description": "<string>",
"public": true,
"range": "<string>",
"auto_refresh": true,
"color": "#FCF2CF",
"icon": "<string>",
"period": "day"
}
}
}
'{
"data": {
"id": "b74a67c1-3edc-432b-9a57-48efa3ed9392",
"type": "dashboards",
"attributes": {
"team_id": 183,
"user_id": 130,
"name": "Test dashboard",
"description": null,
"slug": "test-dashboard",
"public": false,
"owner": "user",
"range": "Last 30 Days",
"period": "day",
"color": "#FAE6E8",
"icon": "📊",
"auto_refresh": false,
"updated_at": "2025-12-24T09:24:22.025-08:00",
"created_at": "2025-12-24T09:24:22.025-08:00"
},
"relationships": {
"panels": {
"data": []
}
}
}
}