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": "884e409f-e79c-4def-82e7-a6b977991519",
    "type": "incident_event_functionalities",
    "attributes": {
      "incident_event_id": "aba1693b-5a28-4827-b6b8-801b011ecaa8",
      "functionality_id": "8865a61b-d5ca-40c1-b474-b0f634b4e840",
      "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