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": "01111ff4-d0ee-46fa-997f-5d25dbe79064",
"type": "incident_event_services",
"attributes": {
"incident_event_id": "50dc06f4-b789-4755-8157-48eca6341eb4",
"service_id": "e72851a4-ddb7-465e-9508-2fcae218f739",
"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": "01111ff4-d0ee-46fa-997f-5d25dbe79064",
"type": "incident_event_services",
"attributes": {
"incident_event_id": "50dc06f4-b789-4755-8157-48eca6341eb4",
"service_id": "e72851a4-ddb7-465e-9508-2fcae218f739",
"status": "major_outage"
}
}
}