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": "188bdae2-0b95-4273-84c9-826b413cd0e5",
    "type": "dashboard_panels",
    "attributes": {
      "dashboard_id": "26286be1-3f1c-4f4f-a073-d2a5ce6f6f81",
      "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-01-20T05:24:48.994-08:00",
      "updated_at": "2026-01-20T05:24:48.994-08:00",
      "data": [
        {
          "name": "Incidents",
          "color": null,
          "data": {
            "2026-01-13": 0,
            "2026-01-14": 0,
            "2026-01-15": 0,
            "2026-01-16": 0,
            "2026-01-17": 0,
            "2026-01-18": 0,
            "2026-01-19": 0,
            "2026-01-20": 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