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": "f55e9b95-4aec-46d2-9c3b-b83d7671afa1",
"type": "incident_event_services",
"attributes": {
"incident_event_id": "1e18fdff-0840-4081-b2f4-6d28b21f6841",
"service_id": "8a8068ae-3e26-4059-9125-48242290ea15",
"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": "f55e9b95-4aec-46d2-9c3b-b83d7671afa1",
"type": "incident_event_services",
"attributes": {
"incident_event_id": "1e18fdff-0840-4081-b2f4-6d28b21f6841",
"service_id": "8a8068ae-3e26-4059-9125-48242290ea15",
"status": "major_outage"
}
}
}