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": "d31c0187-fb7d-4fc2-9d47-a55d8b84ccc7",
"type": "incident_event_services",
"attributes": {
"incident_event_id": "408a949e-e885-4ebb-b25f-6cac842c3773",
"service_id": "8cde6f68-ce74-40b6-9cb7-d102174c7214",
"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": "d31c0187-fb7d-4fc2-9d47-a55d8b84ccc7",
"type": "incident_event_services",
"attributes": {
"incident_event_id": "408a949e-e885-4ebb-b25f-6cac842c3773",
"service_id": "8cde6f68-ce74-40b6-9cb7-d102174c7214",
"status": "major_outage"
}
}
}