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": "605e2c9e-f4a7-4890-accf-ea6cd09c3720",
    "type": "incident_event_functionalities",
    "attributes": {
      "incident_event_id": "8599b0c9-c4c4-4309-abfb-a71cb7516df3",
      "functionality_id": "abdc7a99-1667-4a99-bde5-ceaa11f4c060",
      "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
data
object
required

Response

201
application/vnd.api+json
incident_event_functionality created
data
object
required