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": "0c325830-c850-40fd-a058-1952a70b2579",
"type": "incident_status_page_events",
"attributes": {
"incident_id": "348a4270-463b-4d3c-b8c9-5db70272012f",
"status_page_id": "8017d820-a5e7-418d-981a-3b88ea3a4e25",
"status": "investigating",
"notify_subscribers": false,
"should_tweet": false,
"started_at": "2025-07-17T11:04:32.922-07:00",
"created_at": "2025-07-17T11:04:32.922-07:00",
"updated_at": "2025-07-17T11:04:32.922-07:00",
"event": "Ut adipisci vitae exercitationem."
}
}
}
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": "0c325830-c850-40fd-a058-1952a70b2579",
"type": "incident_status_page_events",
"attributes": {
"incident_id": "348a4270-463b-4d3c-b8c9-5db70272012f",
"status_page_id": "8017d820-a5e7-418d-981a-3b88ea3a4e25",
"status": "investigating",
"notify_subscribers": false,
"should_tweet": false,
"started_at": "2025-07-17T11:04:32.922-07:00",
"created_at": "2025-07-17T11:04:32.922-07:00",
"updated_at": "2025-07-17T11:04:32.922-07:00",
"event": "Ut adipisci vitae exercitationem."
}
}
}