POST
/
v1
/
events
/
{incident_event_id}
/
functionalities
curl --request POST \
  --url https://api.rootly.com/v1/events/{incident_event_id}/functionalities \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/vnd.api+json' \
  --data '{
  "data": {
    "type": "incident_event_functionalities",
    "attributes": {
      "incident_event_id": "<string>",
      "functionality_id": "<string>",
      "status": "operational"
    }
  }
}'
{
  "data": {
    "id": "068f6cfb-d18d-4bde-b587-859494ec35f2",
    "type": "incident_event_functionalities",
    "attributes": {
      "incident_event_id": "67cb1042-c825-4cf3-a620-a7fb6dc601c7",
      "functionality_id": "d3562814-acd7-47c9-beeb-cc430f34c5b6",
      "status": "partial_outage"
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

incident_event_id
string
required

Body

application/vnd.api+json

Response

201
application/vnd.api+json

incident_event_functionality created

The response is of type object.