Skip to main content
GET
/
v1
/
dashboard_panels
/
{id}
Retrieves a dashboard panel
curl --request GET \
  --url https://api.rootly.com/v1/dashboard_panels/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "dc1d4d38-5d28-4822-a486-3c32257cc5b8",
    "type": "dashboard_panels",
    "attributes": {
      "dashboard_id": "25915c29-65bc-4b6c-867f-9e2539a2e3f9",
      "name": "Test panel",
      "params": {
        "display": "line_chart",
        "datasets": [
          {
            "collection": "incidents",
            "filter": [],
            "aggregate": {
              "operation": "count",
              "key": "results",
              "cumulative": false
            }
          }
        ]
      },
      "position": null,
      "created_at": "2026-01-11T11:09:28.576-08:00",
      "updated_at": "2026-01-11T11:09:28.576-08:00",
      "data": [
        {
          "name": "Incidents",
          "color": null,
          "data": {
            "2025-12-11": 0,
            "2025-12-12": 0,
            "2025-12-13": 0,
            "2025-12-14": 0,
            "2025-12-15": 0,
            "2025-12-16": 0,
            "2025-12-17": 0,
            "2025-12-18": 0,
            "2025-12-19": 0,
            "2025-12-20": 0,
            "2025-12-21": 0,
            "2025-12-22": 0,
            "2025-12-23": 0,
            "2025-12-24": 0,
            "2025-12-25": 0,
            "2025-12-26": 0,
            "2025-12-27": 0,
            "2025-12-28": 0,
            "2025-12-29": 0,
            "2025-12-30": 0,
            "2025-12-31": 0,
            "2026-01-01": 0,
            "2026-01-02": 0,
            "2026-01-03": 0,
            "2026-01-04": 0,
            "2026-01-05": 0,
            "2026-01-06": 0,
            "2026-01-07": 0,
            "2026-01-08": 0,
            "2026-01-09": 0,
            "2026-01-10": 0,
            "2026-01-11": 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

Query Parameters

range
string

Date range for panel data, ISO8601 timestamps separated by the word 'to'. Ex: '2022-06-19T11:28:46.029Z to 2022-07-18T21:58:46.029Z'.

period
string

The time period to group data by. Accepts 'day', 'week', and 'month'

time_zone
string

The time zone to use for period

Response

200 - application/vnd.api+json

dashboard panel found

data
object
required