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": "d5d0c19b-e8b5-4878-89c9-fef14ba79997",
    "type": "dashboard_panels",
    "attributes": {
      "dashboard_id": "6de0d424-bae6-4282-aa90-96f86f4c4fe9",
      "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-10-09T10:22:38.459-07:00",
      "updated_at": "2025-10-09T10:22:38.459-07:00",
      "data": [
        {
          "name": "Incidents",
          "color": null,
          "data": {
            "2025-10-02": 0,
            "2025-10-03": 0,
            "2025-10-04": 0,
            "2025-10-05": 0,
            "2025-10-06": 0,
            "2025-10-07": 0,
            "2025-10-08": 0,
            "2025-10-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
I