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": "b82eb1e4-9acf-4ff6-a4ec-4b149437af1b",
    "type": "dashboard_panels",
    "attributes": {
      "dashboard_id": "bad4b1a3-2c91-45da-8d42-c2b450cca4be",
      "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-09-18T20:53:44.658-07:00",
      "updated_at": "2025-09-18T20:53:44.658-07:00",
      "data": [
        {
          "name": "Incidents",
          "color": null,
          "data": {
            "2025-09-11": 0,
            "2025-09-12": 0,
            "2025-09-13": 0,
            "2025-09-14": 0,
            "2025-09-15": 0,
            "2025-09-16": 0,
            "2025-09-17": 0,
            "2025-09-18": 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