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": "773c75de-9dde-4f50-b71f-9ad5bceae030",
"type": "dashboards",
"attributes": {
"team_id": 184,
"user_id": 166,
"name": "Test dashboard",
"description": null,
"slug": "test-dashboard",
"public": false,
"owner": "user",
"range": "Last 30 Days",
"period": "day",
"color": "#FCF2CF",
"icon": "📊",
"auto_refresh": false,
"updated_at": "2026-02-03T13:57:43.064-08:00",
"created_at": "2026-02-03T13:57:43.064-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": "773c75de-9dde-4f50-b71f-9ad5bceae030",
"type": "dashboards",
"attributes": {
"team_id": 184,
"user_id": 166,
"name": "Test dashboard",
"description": null,
"slug": "test-dashboard",
"public": false,
"owner": "user",
"range": "Last 30 Days",
"period": "day",
"color": "#FCF2CF",
"icon": "📊",
"auto_refresh": false,
"updated_at": "2026-02-03T13:57:43.064-08:00",
"created_at": "2026-02-03T13:57:43.064-08:00"
},
"relationships": {
"panels": {
"data": []
}
}
}
}