Retrieves a specific incident_status_page_event by id
curl --request GET \
--url https://api.rootly.com/v1/status-page-events/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "b6ae57cd-5df0-4529-bddb-c43d8e4b6d28",
"type": "incident_status_page_events",
"attributes": {
"incident_id": "eec6ee34-c64a-45d6-97cb-03b33d900853",
"status_page_id": "b41e9e13-1e54-4e6f-ab1d-87ebb020a847",
"status": "investigating",
"notify_subscribers": false,
"should_tweet": false,
"started_at": "2025-08-01T21:49:34.085-07:00",
"created_at": "2025-08-01T21:49:34.085-07:00",
"updated_at": "2025-08-01T21:49:34.085-07:00",
"event": "Aut et rerum reiciendis."
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
incident_status_page_event found
The response is of type object
.
curl --request GET \
--url https://api.rootly.com/v1/status-page-events/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "b6ae57cd-5df0-4529-bddb-c43d8e4b6d28",
"type": "incident_status_page_events",
"attributes": {
"incident_id": "eec6ee34-c64a-45d6-97cb-03b33d900853",
"status_page_id": "b41e9e13-1e54-4e6f-ab1d-87ebb020a847",
"status": "investigating",
"notify_subscribers": false,
"should_tweet": false,
"started_at": "2025-08-01T21:49:34.085-07:00",
"created_at": "2025-08-01T21:49:34.085-07:00",
"updated_at": "2025-08-01T21:49:34.085-07:00",
"event": "Aut et rerum reiciendis."
}
}
}