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": "146f44b3-074c-4b97-a90e-0776c6a0ee0c",
"type": "incident_status_page_events",
"attributes": {
"incident_id": "0beee446-0fba-405b-afdf-d31bcf4c3500",
"status_page_id": "7008252f-52c0-4440-a39c-f4c27c7a62c4",
"status": "investigating",
"notify_subscribers": false,
"should_tweet": false,
"started_at": "2026-02-13T07:52:30.363-08:00",
"created_at": "2026-02-13T07:52:30.363-08:00",
"updated_at": "2026-02-13T07:52:31.306-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": "146f44b3-074c-4b97-a90e-0776c6a0ee0c",
"type": "incident_status_page_events",
"attributes": {
"incident_id": "0beee446-0fba-405b-afdf-d31bcf4c3500",
"status_page_id": "7008252f-52c0-4440-a39c-f4c27c7a62c4",
"status": "investigating",
"notify_subscribers": false,
"should_tweet": false,
"started_at": "2026-02-13T07:52:30.363-08:00",
"created_at": "2026-02-13T07:52:30.363-08:00",
"updated_at": "2026-02-13T07:52:31.306-08:00",
"event": "Event updated"
}
}
}