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": "4be01e23-ebfa-4093-a19b-0ce89b58c4e5",
    "type": "incident_status_page_events",
    "attributes": {
      "incident_id": "6f5334dc-5911-4450-a394-a2a1a50b077a",
      "status_page_id": "8887fab7-167d-4c32-9139-8ae3de287d1e",
      "status": "investigating",
      "notify_subscribers": false,
      "should_tweet": false,
      "started_at": "2025-06-19T04:15:48.295-07:00",
      "created_at": "2025-06-19T04:15:48.295-07:00",
      "updated_at": "2025-06-19T04:15:49.859-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

Response

200
application/vnd.api+json

incident_status_page_event updated

The response is of type object.