Skip to main content
PUT
/
v1
/
status-page-events
/
{id}
Update an incident status page event
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": "55977608-ca50-4ad9-badc-119cb3d3bf86",
    "type": "incident_status_page_events",
    "attributes": {
      "incident_id": "dd2fda21-5d82-4112-89ed-d0ed5837c641",
      "status_page_id": "2e817c0a-3833-4e58-be90-435696efdc8a",
      "status": "investigating",
      "notify_subscribers": false,
      "should_tweet": false,
      "started_at": "2025-12-12T05:17:28.106-08:00",
      "created_at": "2025-12-12T05:17:28.107-08:00",
      "updated_at": "2025-12-12T05:17:29.203-08:00",
      "event": "Event updated"
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Body

application/vnd.api+json
data
object
required

Response

incident_status_page_event updated

data
object
required