Get team incidents chart
curl --request GET \
--url https://api.rootly.com/v1/teams/{id}/incidents_chart \
--header 'Authorization: Bearer <token>'
{
"data": {
"2025-08-08": 0,
"2025-08-09": 0,
"2025-08-10": 0,
"2025-08-11": 0,
"2025-08-12": 0,
"2025-08-13": 0,
"2025-08-14": 0,
"2025-08-15": 0,
"2025-08-16": 0,
"2025-08-17": 0,
"2025-08-18": 0,
"2025-08-19": 0,
"2025-08-20": 0,
"2025-08-21": 0,
"2025-08-22": 0,
"2025-08-23": 0,
"2025-08-24": 0,
"2025-08-25": 0,
"2025-08-26": 0,
"2025-08-27": 0,
"2025-08-28": 0,
"2025-08-29": 0,
"2025-08-30": 0,
"2025-08-31": 0,
"2025-09-01": 0,
"2025-09-02": 0,
"2025-09-03": 0,
"2025-09-04": 0,
"2025-09-05": 1,
"2025-09-06": 0,
"2025-09-07": 0,
"2025-09-08": 0
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
success
The response is of type object
.
curl --request GET \
--url https://api.rootly.com/v1/teams/{id}/incidents_chart \
--header 'Authorization: Bearer <token>'
{
"data": {
"2025-08-08": 0,
"2025-08-09": 0,
"2025-08-10": 0,
"2025-08-11": 0,
"2025-08-12": 0,
"2025-08-13": 0,
"2025-08-14": 0,
"2025-08-15": 0,
"2025-08-16": 0,
"2025-08-17": 0,
"2025-08-18": 0,
"2025-08-19": 0,
"2025-08-20": 0,
"2025-08-21": 0,
"2025-08-22": 0,
"2025-08-23": 0,
"2025-08-24": 0,
"2025-08-25": 0,
"2025-08-26": 0,
"2025-08-27": 0,
"2025-08-28": 0,
"2025-08-29": 0,
"2025-08-30": 0,
"2025-08-31": 0,
"2025-09-01": 0,
"2025-09-02": 0,
"2025-09-03": 0,
"2025-09-04": 0,
"2025-09-05": 1,
"2025-09-06": 0,
"2025-09-07": 0,
"2025-09-08": 0
}
}