Skip to main content
PUT
/
v1
/
incident_event_services
/
{id}
Update an incident event
curl --request PUT \
  --url https://api.rootly.com/v1/incident_event_services/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/vnd.api+json' \
  --data '{
  "data": {
    "type": "incident_event_services",
    "attributes": {
      "status": "operational"
    }
  }
}'
{
  "data": {
    "id": "86dbebed-f066-4cf1-961f-7c558d5fbd07",
    "type": "incident_event_services",
    "attributes": {
      "incident_event_id": "91c8b978-7055-4c5e-8262-695dfafb0d11",
      "service_id": "ce2b8fec-e5ee-4fc8-994d-7dd25f6b1c1e",
      "status": "major_outage"
    }
  }
}

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_event_service updated

data
object
required
I