PUT
/
v1
/
dashboards
/
{id}
curl --request PUT \
  --url https://api.rootly.com/v1/dashboards/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/vnd.api+json' \
  --data '{
  "data": {
    "type": "dashboards",
    "attributes": {
      "name": "<string>",
      "description": "<string>",
      "owner": "user",
      "public": true,
      "range": "<string>",
      "auto_refresh": true,
      "color": "#FCF2CF",
      "icon": "<string>",
      "period": "day"
    }
  }
}'
{
  "data": {
    "id": "f56583c5-b452-4094-bf38-3e8584783367",
    "type": "dashboards",
    "attributes": {
      "team_id": 107,
      "user_id": 81,
      "name": "Test update dashboard",
      "description": null,
      "slug": "test-update-dashboard",
      "public": false,
      "owner": "team",
      "range": "Last 30 Days",
      "period": "day",
      "color": "#FAEEE6",
      "icon": "📊",
      "auto_refresh": false,
      "updated_at": "2025-06-19T02:38:51.928-07:00",
      "created_at": "2025-06-19T02:38:47.402-07:00"
    },
    "relationships": {
      "panels": {
        "data": []
      }
    }
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Body

application/vnd.api+json

Response

200
application/vnd.api+json

dashboard updated

The response is of type object.