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": "004d2587-a73b-4866-913a-50e212fee1c0",
"type": "incident_status_page_events",
"attributes": {
"incident_id": "0df48fa8-8024-47b4-8b76-f0b64bd3b475",
"status_page_id": "0376d099-3092-4c57-a3d5-17711468d13c",
"status": "investigating",
"notify_subscribers": false,
"should_tweet": false,
"started_at": "2025-08-21T23:45:17.822-07:00",
"created_at": "2025-08-21T23:45:17.822-07:00",
"updated_at": "2025-08-21T23:45:17.822-07:00",
"event": "Consequuntur magni perferendis non."
}
}
}
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": "004d2587-a73b-4866-913a-50e212fee1c0",
"type": "incident_status_page_events",
"attributes": {
"incident_id": "0df48fa8-8024-47b4-8b76-f0b64bd3b475",
"status_page_id": "0376d099-3092-4c57-a3d5-17711468d13c",
"status": "investigating",
"notify_subscribers": false,
"should_tweet": false,
"started_at": "2025-08-21T23:45:17.822-07:00",
"created_at": "2025-08-21T23:45:17.822-07:00",
"updated_at": "2025-08-21T23:45:17.822-07:00",
"event": "Consequuntur magni perferendis non."
}
}
}