GET
/
v1
/
dashboard_panels
/
{id}
curl --request GET \
  --url https://api.rootly.com/v1/dashboard_panels/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "953b863b-1620-40d3-be53-9ed63c3db622",
    "type": "dashboard_panels",
    "attributes": {
      "dashboard_id": "dece674f-48ad-4750-9129-58e1914a2873",
      "name": "Test panel",
      "params": {
        "display": "line_chart",
        "datasets": [
          {
            "collection": "incidents",
            "filter": [],
            "aggregate": {
              "operation": "count",
              "key": "results",
              "cumulative": false
            }
          }
        ]
      },
      "position": null,
      "created_at": "2025-05-29T17:41:29.431-07:00",
      "updated_at": "2025-05-29T17:41:29.431-07:00",
      "data": [
        {
          "name": "Incidents",
          "color": null,
          "data": {
            "2025-04-29": 0,
            "2025-04-30": 0,
            "2025-05-01": 0,
            "2025-05-02": 0,
            "2025-05-03": 0,
            "2025-05-04": 0,
            "2025-05-05": 0,
            "2025-05-06": 0,
            "2025-05-07": 0,
            "2025-05-08": 0,
            "2025-05-09": 0,
            "2025-05-10": 0,
            "2025-05-11": 0,
            "2025-05-12": 0,
            "2025-05-13": 0,
            "2025-05-14": 0,
            "2025-05-15": 0,
            "2025-05-16": 0,
            "2025-05-17": 0,
            "2025-05-18": 0,
            "2025-05-19": 0,
            "2025-05-20": 0,
            "2025-05-21": 0,
            "2025-05-22": 0,
            "2025-05-23": 0,
            "2025-05-24": 0,
            "2025-05-25": 0,
            "2025-05-26": 0,
            "2025-05-27": 0,
            "2025-05-28": 0,
            "2025-05-29": 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

The response is of type object.