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": "8cbd0e38-9a2d-46e6-ac3f-0f320cd7550e",
    "type": "incident_status_page_events",
    "attributes": {
      "incident_id": "dbde378d-56f4-4220-a77f-d6749a06a677",
      "status_page_id": "5dba7464-663d-40ba-9f5a-d2cfbe976b13",
      "status": "investigating",
      "notify_subscribers": false,
      "should_tweet": false,
      "started_at": "2025-03-28T23:02:32.687-07:00",
      "created_at": "2025-03-28T23:02:32.687-07:00",
      "updated_at": "2025-03-28T23:02:34.605-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