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": "af9016c7-2b97-4a30-9006-f579a3d4c6e6",
"type": "incident_status_page_events",
"attributes": {
"incident_id": "beadd866-cfa0-41dc-8019-8971cc15812f",
"status_page_id": "38e574b1-0f8b-47da-ac23-7e15b1e96fe9",
"status": "investigating",
"notify_subscribers": false,
"should_tweet": false,
"started_at": "2025-10-11T22:18:08.676-07:00",
"created_at": "2025-10-11T22:18:08.676-07:00",
"updated_at": "2025-10-11T22:18:09.724-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": "af9016c7-2b97-4a30-9006-f579a3d4c6e6",
"type": "incident_status_page_events",
"attributes": {
"incident_id": "beadd866-cfa0-41dc-8019-8971cc15812f",
"status_page_id": "38e574b1-0f8b-47da-ac23-7e15b1e96fe9",
"status": "investigating",
"notify_subscribers": false,
"should_tweet": false,
"started_at": "2025-10-11T22:18:08.676-07:00",
"created_at": "2025-10-11T22:18:08.676-07:00",
"updated_at": "2025-10-11T22:18:09.724-07:00",
"event": "Event updated"
}
}
}