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": "2bcaaee3-14d6-4763-bdb7-8261cf200ebb",
    "type": "dashboard_panels",
    "attributes": {
      "dashboard_id": "7500beb4-8169-4da7-9f26-d97959cd9c5b",
      "name": "Copy of Test panel",
      "params": {
        "display": "line_chart",
        "datasets": [
          {
            "collection": "incidents",
            "filter": [],
            "aggregate": {
              "operation": "count",
              "key": "results",
              "cumulative": false
            }
          }
        ]
      },
      "position": null,
      "created_at": "2026-02-09T17:20:26.594-08:00",
      "updated_at": "2026-02-09T17:20:26.594-08:00",
      "data": [
        {
          "name": "Incidents",
          "color": null,
          "data": {
            "2026-02-02": 0,
            "2026-02-03": 0,
            "2026-02-04": 0,
            "2026-02-05": 0,
            "2026-02-06": 0,
            "2026-02-07": 0,
            "2026-02-08": 0,
            "2026-02-09": 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