Get functionality incidents chart
curl --request GET \
--url https://api.rootly.com/v1/functionalities/{id}/incidents_chart \
--header 'Authorization: Bearer <token>'
{
"data": {
"2025-06-02 00:00:00 UTC": 0,
"2025-06-09 00:00:00 UTC": 0,
"2025-06-16 00:00:00 UTC": 0,
"2025-06-23 00:00:00 UTC": 0,
"2025-06-30 00:00:00 UTC": 0,
"2025-07-07 00:00:00 UTC": 0,
"2025-07-14 00:00:00 UTC": 0,
"2025-07-21 00:00:00 UTC": 0,
"2025-07-28 00:00:00 UTC": 1
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
success
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/functionalities/{id}/incidents_chart \
--header 'Authorization: Bearer <token>'
{
"data": {
"2025-06-02 00:00:00 UTC": 0,
"2025-06-09 00:00:00 UTC": 0,
"2025-06-16 00:00:00 UTC": 0,
"2025-06-23 00:00:00 UTC": 0,
"2025-06-30 00:00:00 UTC": 0,
"2025-07-07 00:00:00 UTC": 0,
"2025-07-14 00:00:00 UTC": 0,
"2025-07-21 00:00:00 UTC": 0,
"2025-07-28 00:00:00 UTC": 1
}
}