Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Body
application/vnd.api+json
Response
incident_event_service updated
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": "6e3e43aa-3985-4ae4-885c-ee8a8b1c9e1d",
"type": "incident_event_services",
"attributes": {
"incident_event_id": "0f44f189-3966-484b-b0f9-801cfed2c7c3",
"service_id": "55a27878-b9cb-4c58-b9c8-d7f77105711e",
"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": "6e3e43aa-3985-4ae4-885c-ee8a8b1c9e1d",
"type": "incident_event_services",
"attributes": {
"incident_event_id": "0f44f189-3966-484b-b0f9-801cfed2c7c3",
"service_id": "55a27878-b9cb-4c58-b9c8-d7f77105711e",
"status": "major_outage"
}
}
}