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": "e1bc37c6-434e-4d4e-b878-c0869909b099",
"type": "incident_status_page_events",
"attributes": {
"incident_id": "6b13d48e-cda5-497f-a49e-453d126cfb5c",
"status_page_id": "4a26ad21-133f-43d3-9bb4-0c9190dc6577",
"status": "investigating",
"notify_subscribers": false,
"should_tweet": false,
"started_at": "2025-07-21T23:19:54.720-07:00",
"created_at": "2025-07-21T23:19:54.720-07:00",
"updated_at": "2025-07-21T23:19:56.381-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": "e1bc37c6-434e-4d4e-b878-c0869909b099",
"type": "incident_status_page_events",
"attributes": {
"incident_id": "6b13d48e-cda5-497f-a49e-453d126cfb5c",
"status_page_id": "4a26ad21-133f-43d3-9bb4-0c9190dc6577",
"status": "investigating",
"notify_subscribers": false,
"should_tweet": false,
"started_at": "2025-07-21T23:19:54.720-07:00",
"created_at": "2025-07-21T23:19:54.720-07:00",
"updated_at": "2025-07-21T23:19:56.381-07:00",
"event": "Event updated"
}
}
}