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": "5e946887-c453-48a9-b0ff-663bca30b8a3",
"type": "incident_status_page_events",
"attributes": {
"incident_id": "073c7125-7c4f-4252-aaa3-3c7b580d0880",
"status_page_id": "61f27296-41be-4b68-93d4-546f240cfacf",
"status": "investigating",
"notify_subscribers": false,
"should_tweet": false,
"started_at": "2025-09-01T03:41:03.478-07:00",
"created_at": "2025-09-01T03:41:03.478-07:00",
"updated_at": "2025-09-01T03:41:04.677-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": "5e946887-c453-48a9-b0ff-663bca30b8a3",
"type": "incident_status_page_events",
"attributes": {
"incident_id": "073c7125-7c4f-4252-aaa3-3c7b580d0880",
"status_page_id": "61f27296-41be-4b68-93d4-546f240cfacf",
"status": "investigating",
"notify_subscribers": false,
"should_tweet": false,
"started_at": "2025-09-01T03:41:03.478-07:00",
"created_at": "2025-09-01T03:41:03.478-07:00",
"updated_at": "2025-09-01T03:41:04.677-07:00",
"event": "Event updated"
}
}
}