PUT
/
v1
/
status-page-events
/
{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": "bf9a2217-e1a0-4a97-8dcd-f5f61ac07a7d",
    "type": "incident_status_page_events",
    "attributes": {
      "incident_id": "837807c9-5048-4e94-9976-df79a17179ee",
      "status_page_id": "31c37982-0b9b-4ec2-abf0-9772ad454f3d",
      "status": "investigating",
      "notify_subscribers": false,
      "should_tweet": false,
      "started_at": "2025-03-22T23:02:30.437-07:00",
      "created_at": "2025-03-22T23:02:30.437-07:00",
      "updated_at": "2025-03-22T23:02:32.387-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

200
application/vnd.api+json
incident_status_page_event updated
data
object
required