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": "f9655a67-2eb2-4dc4-bc91-404cfd1add2a",
    "type": "incident_status_page_events",
    "attributes": {
      "incident_id": "5c39c9c7-6b34-447a-a2b3-74d4e3705e3a",
      "status_page_id": "5317ab08-cd80-452c-8d0b-602d6f382f58",
      "status": "investigating",
      "notify_subscribers": false,
      "should_tweet": false,
      "started_at": "2025-10-31T18:57:20.590-07:00",
      "created_at": "2025-10-31T18:57:20.590-07:00",
      "updated_at": "2025-10-31T18:57:21.633-07: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