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": "bd3cc880-954a-46bc-b5e3-d1b137fdace8",
"type": "incident_event_services",
"attributes": {
"incident_event_id": "9a247456-78d3-46a0-8863-93a5f9a61539",
"service_id": "fc7ed353-e3bb-44f8-ac4e-acd42a283b85",
"status": "major_outage"
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
incident_event_service updated
Show child attributes
Unique ID of the incident event service
incident_event_services 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": "bd3cc880-954a-46bc-b5e3-d1b137fdace8",
"type": "incident_event_services",
"attributes": {
"incident_event_id": "9a247456-78d3-46a0-8863-93a5f9a61539",
"service_id": "fc7ed353-e3bb-44f8-ac4e-acd42a283b85",
"status": "major_outage"
}
}
}