Update a specific incident event functionality by id
curl --request PUT \
--url https://api.rootly.com/v1/incident_event_functionalities/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '
{
"data": {
"type": "incident_event_functionalities",
"attributes": {
"status": "operational"
}
}
}
'{
"data": {
"id": "045e331f-bb4a-42ac-84a2-42caa77987ff",
"type": "incident_event_functionalities",
"attributes": {
"incident_event_id": "d7819aee-649f-482b-a98c-de9fff1fb531",
"functionality_id": "d1f3711c-3ce4-48ef-b363-24107627b842",
"status": "major_outage"
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Show child attributes
incident_event_functionality updated
Show child attributes
Was this page helpful?
curl --request PUT \
--url https://api.rootly.com/v1/incident_event_functionalities/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '
{
"data": {
"type": "incident_event_functionalities",
"attributes": {
"status": "operational"
}
}
}
'{
"data": {
"id": "045e331f-bb4a-42ac-84a2-42caa77987ff",
"type": "incident_event_functionalities",
"attributes": {
"incident_event_id": "d7819aee-649f-482b-a98c-de9fff1fb531",
"functionality_id": "d1f3711c-3ce4-48ef-b363-24107627b842",
"status": "major_outage"
}
}
}