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": "4f29cb4e-6890-40c2-91be-8c851f4afd25",
    "type": "incident_status_page_events",
    "attributes": {
      "incident_id": "8cc3c508-8f8e-4a7a-8537-4f5409300b65",
      "status_page_id": "cda9b4fc-9277-45c1-be6f-b8385ed31ab3",
      "status": "investigating",
      "notify_subscribers": false,
      "should_tweet": false,
      "started_at": "2025-04-18T18:20:26.710-07:00",
      "created_at": "2025-04-18T18:20:26.710-07:00",
      "updated_at": "2025-04-18T18:20:28.706-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