Skip to main content
POST
/
v1
/
dashboards
/
{id}
/
duplicate
Duplicates a dashboard
curl --request POST \
  --url https://api.rootly.com/v1/dashboards/{id}/duplicate \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "<string>",
    "type": "dashboards",
    "attributes": {
      "name": "<string>",
      "owner": "user",
      "public": true,
      "team_id": 123,
      "user_id": 123,
      "description": "<string>",
      "range": "<string>",
      "period": "<string>",
      "auto_refresh": true,
      "color": "#FCF2CF",
      "icon": "<string>",
      "created_at": "<string>",
      "updated_at": "<string>"
    }
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
required

Resource UUID

Response

dashboard created

data
object
required