Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Body
application/vnd.api+json
Response
incident_event_service updated
Update a specific incident event service by 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": "fe2e551e-80bf-4781-8924-6f72e72bf010",
"type": "incident_event_services",
"attributes": {
"incident_event_id": "50994774-237e-4705-952d-b36704801329",
"service_id": "1d27965f-9779-4bad-ae23-46e31622d539",
"status": "major_outage"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Show child attributes
incident_event_service updated
Show child attributes
Was this page helpful?
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": "fe2e551e-80bf-4781-8924-6f72e72bf010",
"type": "incident_event_services",
"attributes": {
"incident_event_id": "50994774-237e-4705-952d-b36704801329",
"service_id": "1d27965f-9779-4bad-ae23-46e31622d539",
"status": "major_outage"
}
}
}