Update a specific incident status page event by id
curl --request PUT \
--url https://api.rootly.com/v1/status-page-events/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '{
"data": {
"type": "incident_status_page_events",
"attributes": {
"event": "<string>",
"status_page_id": "<string>",
"status": "investigating",
"notify_subscribers": false,
"should_tweet": false
}
}
}'
{
"data": {
"id": "b40b56c6-7f46-49a5-8024-49f5f37966b1",
"type": "incident_status_page_events",
"attributes": {
"incident_id": "0e119e67-6f29-4df6-b467-f6e42a108be2",
"status_page_id": "de50906a-6c03-4f64-8630-e35f4ef0091d",
"status": "investigating",
"notify_subscribers": false,
"should_tweet": false,
"started_at": "2025-08-11T23:21:38.614-07:00",
"created_at": "2025-08-11T23:21:38.614-07:00",
"updated_at": "2025-08-11T23:21:40.399-07:00",
"event": "Event updated"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
incident_status_page_event updated
The response is of type object
.
curl --request PUT \
--url https://api.rootly.com/v1/status-page-events/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '{
"data": {
"type": "incident_status_page_events",
"attributes": {
"event": "<string>",
"status_page_id": "<string>",
"status": "investigating",
"notify_subscribers": false,
"should_tweet": false
}
}
}'
{
"data": {
"id": "b40b56c6-7f46-49a5-8024-49f5f37966b1",
"type": "incident_status_page_events",
"attributes": {
"incident_id": "0e119e67-6f29-4df6-b467-f6e42a108be2",
"status_page_id": "de50906a-6c03-4f64-8630-e35f4ef0091d",
"status": "investigating",
"notify_subscribers": false,
"should_tweet": false,
"started_at": "2025-08-11T23:21:38.614-07:00",
"created_at": "2025-08-11T23:21:38.614-07:00",
"updated_at": "2025-08-11T23:21:40.399-07:00",
"event": "Event updated"
}
}
}