Skip to main content
POST
/
v1
/
dashboard_panels
/
{id}
/
duplicate
Duplicates a dashboard panel
curl --request POST \
  --url https://api.rootly.com/v1/dashboard_panels/{id}/duplicate \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "f1a73b95-5006-4553-815f-ce513de11684",
    "type": "dashboard_panels",
    "attributes": {
      "dashboard_id": "a3bf3291-0532-4eb7-b80e-bd04db86fc3e",
      "name": "Copy of Test panel",
      "params": {
        "display": "line_chart",
        "datasets": [
          {
            "collection": "incidents",
            "filter": [],
            "aggregate": {
              "operation": "count",
              "key": "results",
              "cumulative": false
            }
          }
        ]
      },
      "position": null,
      "created_at": "2025-12-10T16:21:54.456-08:00",
      "updated_at": "2025-12-10T16:21:54.456-08:00",
      "data": [
        {
          "name": "Incidents",
          "color": null,
          "data": {
            "2025-12-03": 0,
            "2025-12-04": 0,
            "2025-12-05": 0,
            "2025-12-06": 0,
            "2025-12-07": 0,
            "2025-12-08": 0,
            "2025-12-09": 0,
            "2025-12-10": 0
          }
        }
      ]
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Response

dashboard panel created

data
object
required