Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Body
application/vnd.api+json
Response
incident_status_page_event updated
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": "206cd861-eaf2-4cd8-88af-8c37aaebf9ca",
"type": "incident_status_page_events",
"attributes": {
"incident_id": "5d72ebdb-69f0-4abc-b15b-e065cfe5cddf",
"status_page_id": "964fa283-3dd0-41ee-b47c-34337bc883bc",
"status": "investigating",
"notify_subscribers": false,
"should_tweet": false,
"started_at": "2025-09-18T20:56:55.377-07:00",
"created_at": "2025-09-18T20:56:55.377-07:00",
"updated_at": "2025-09-18T20:56:56.544-07: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": "206cd861-eaf2-4cd8-88af-8c37aaebf9ca",
"type": "incident_status_page_events",
"attributes": {
"incident_id": "5d72ebdb-69f0-4abc-b15b-e065cfe5cddf",
"status_page_id": "964fa283-3dd0-41ee-b47c-34337bc883bc",
"status": "investigating",
"notify_subscribers": false,
"should_tweet": false,
"started_at": "2025-09-18T20:56:55.377-07:00",
"created_at": "2025-09-18T20:56:55.377-07:00",
"updated_at": "2025-09-18T20:56:56.544-07:00",
"event": "Event updated"
}
}
}