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": "<string>",
"type": "incident_event_functionalities",
"attributes": {
"incident_event_id": "<string>",
"functionality_id": "<string>",
"status": "operational"
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
incident_event_functionality updated
Show child attributes
Unique ID of the incident event functionality
incident_event_functionalities 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": "<string>",
"type": "incident_event_functionalities",
"attributes": {
"incident_event_id": "<string>",
"functionality_id": "<string>",
"status": "operational"
}
}
}