Duplicates a dashboard
curl --request POST \
--url https://api.rootly.com/v1/dashboards/{id}/duplicate \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "7fae74f2-fb4e-49c9-8d94-ec083d91cd7b",
"type": "dashboards",
"attributes": {
"team_id": 104,
"user_id": 82,
"name": "Copy of Dashboard 10 - 2025-08-01",
"description": null,
"slug": "copy-of-dashboard-10-2025-08-01",
"public": false,
"owner": "user",
"range": "Last 30 Days",
"period": "day",
"color": "#D7F5E1",
"icon": "📊",
"auto_refresh": false,
"updated_at": "2025-07-31T19:33:40.982-07:00",
"created_at": "2025-07-31T19:33:40.982-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/{id}/duplicate \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "7fae74f2-fb4e-49c9-8d94-ec083d91cd7b",
"type": "dashboards",
"attributes": {
"team_id": 104,
"user_id": 82,
"name": "Copy of Dashboard 10 - 2025-08-01",
"description": null,
"slug": "copy-of-dashboard-10-2025-08-01",
"public": false,
"owner": "user",
"range": "Last 30 Days",
"period": "day",
"color": "#D7F5E1",
"icon": "📊",
"auto_refresh": false,
"updated_at": "2025-07-31T19:33:40.982-07:00",
"created_at": "2025-07-31T19:33:40.982-07:00"
},
"relationships": {
"panels": {
"data": []
}
}
}
}