Get team incidents chart
curl --request GET \
--url https://api.rootly.com/v1/teams/{id}/incidents_chart \
--header 'Authorization: Bearer <token>'
{
"data": {
"2025-06-28": 0,
"2025-06-29": 0,
"2025-06-30": 0,
"2025-07-01": 0,
"2025-07-02": 0,
"2025-07-03": 0,
"2025-07-04": 0,
"2025-07-05": 0,
"2025-07-06": 0,
"2025-07-07": 0,
"2025-07-08": 0,
"2025-07-09": 0,
"2025-07-10": 0,
"2025-07-11": 0,
"2025-07-12": 0,
"2025-07-13": 0,
"2025-07-14": 0,
"2025-07-15": 0,
"2025-07-16": 0,
"2025-07-17": 0,
"2025-07-18": 0,
"2025-07-19": 0,
"2025-07-20": 0,
"2025-07-21": 0,
"2025-07-22": 0,
"2025-07-23": 0,
"2025-07-24": 0,
"2025-07-25": 0,
"2025-07-26": 1,
"2025-07-27": 0,
"2025-07-28": 0,
"2025-07-29": 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-06-28": 0,
"2025-06-29": 0,
"2025-06-30": 0,
"2025-07-01": 0,
"2025-07-02": 0,
"2025-07-03": 0,
"2025-07-04": 0,
"2025-07-05": 0,
"2025-07-06": 0,
"2025-07-07": 0,
"2025-07-08": 0,
"2025-07-09": 0,
"2025-07-10": 0,
"2025-07-11": 0,
"2025-07-12": 0,
"2025-07-13": 0,
"2025-07-14": 0,
"2025-07-15": 0,
"2025-07-16": 0,
"2025-07-17": 0,
"2025-07-18": 0,
"2025-07-19": 0,
"2025-07-20": 0,
"2025-07-21": 0,
"2025-07-22": 0,
"2025-07-23": 0,
"2025-07-24": 0,
"2025-07-25": 0,
"2025-07-26": 1,
"2025-07-27": 0,
"2025-07-28": 0,
"2025-07-29": 0
}
}