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": "a11dd607-7371-4c21-9a30-da9c3f4c957b",
"type": "incident_status_page_events",
"attributes": {
"incident_id": "9f1a8b19-30af-4e54-9f86-93d61661f312",
"status_page_id": "f9b26fc1-8ff1-4ccc-b166-551ae7a4fd34",
"status": "investigating",
"notify_subscribers": false,
"should_tweet": false,
"started_at": "2026-01-03T21:28:07.998-08:00",
"created_at": "2026-01-03T21:28:07.998-08:00",
"updated_at": "2026-01-03T21:28:08.806-08:00",
"event": "Event updated"
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Show child attributes
incident_status_page_event updated
Show child attributes
Was this page helpful?
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": "a11dd607-7371-4c21-9a30-da9c3f4c957b",
"type": "incident_status_page_events",
"attributes": {
"incident_id": "9f1a8b19-30af-4e54-9f86-93d61661f312",
"status_page_id": "f9b26fc1-8ff1-4ccc-b166-551ae7a4fd34",
"status": "investigating",
"notify_subscribers": false,
"should_tweet": false,
"started_at": "2026-01-03T21:28:07.998-08:00",
"created_at": "2026-01-03T21:28:07.998-08:00",
"updated_at": "2026-01-03T21:28:08.806-08:00",
"event": "Event updated"
}
}
}