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": "661eac14-8314-4fdd-8581-1985ffd25655",
"type": "incident_event_services",
"attributes": {
"incident_event_id": "810de1ef-22e3-4bf8-99d6-2c8936a1cc1c",
"service_id": "b55539ef-2122-486b-984b-c1da06df8c07",
"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": "661eac14-8314-4fdd-8581-1985ffd25655",
"type": "incident_event_services",
"attributes": {
"incident_event_id": "810de1ef-22e3-4bf8-99d6-2c8936a1cc1c",
"service_id": "b55539ef-2122-486b-984b-c1da06df8c07",
"status": "major_outage"
}
}
}