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": "35b527e9-47a6-480e-aa12-f3934c3aa616",
    "type": "incident_event_functionalities",
    "attributes": {
      "incident_event_id": "387ebd5e-7538-414b-8edd-a285653364c8",
      "functionality_id": "8dbaa7f6-b2f9-4242-8426-698bc912e665",
      "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.