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>",
"description": "<string>",
"owner": "user",
"public": true,
"range": "<string>",
"auto_refresh": true,
"color": "#FCF2CF",
"icon": "<string>",
"period": "day"
}
}
}'
{
"data": {
"id": "e1cb88b1-bb95-454f-9705-a0dea39f155c",
"type": "dashboards",
"attributes": {
"team_id": 104,
"user_id": 82,
"name": "Test dashboard",
"description": null,
"slug": "test-dashboard",
"public": false,
"owner": "user",
"range": "Last 30 Days",
"period": "day",
"color": "#E9E2FF",
"icon": "📊",
"auto_refresh": false,
"updated_at": "2025-07-17T12:07:21.229-07:00",
"created_at": "2025-07-17T12:07:21.229-07:00"
},
"relationships": {
"panels": {
"data": []
}
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
dashboard created
The response is of type object
.
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>",
"description": "<string>",
"owner": "user",
"public": true,
"range": "<string>",
"auto_refresh": true,
"color": "#FCF2CF",
"icon": "<string>",
"period": "day"
}
}
}'
{
"data": {
"id": "e1cb88b1-bb95-454f-9705-a0dea39f155c",
"type": "dashboards",
"attributes": {
"team_id": 104,
"user_id": 82,
"name": "Test dashboard",
"description": null,
"slug": "test-dashboard",
"public": false,
"owner": "user",
"range": "Last 30 Days",
"period": "day",
"color": "#E9E2FF",
"icon": "📊",
"auto_refresh": false,
"updated_at": "2025-07-17T12:07:21.229-07:00",
"created_at": "2025-07-17T12:07:21.229-07:00"
},
"relationships": {
"panels": {
"data": []
}
}
}
}