PUT
/
v1
/
incident_event_services
/
{id}
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": "e15e26bc-5b19-4e63-ba14-d87a01a38d1b",
    "type": "incident_event_services",
    "attributes": {
      "incident_event_id": "6201915b-de01-4911-8fbd-d140c07fda59",
      "service_id": "57f35efb-e2f7-4e6e-8745-557d6ba7114a",
      "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

Response

200
application/vnd.api+json

incident_event_service updated

The response is of type object.