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": "8412e446-d32f-44bd-9461-329a80a7d5a3",
    "type": "incident_event_functionalities",
    "attributes": {
      "incident_event_id": "9957e9eb-bd99-4cc7-81b1-ce2968ced000",
      "functionality_id": "5c5aaaa3-0ca7-4ab6-81c6-3512c4c43682",
      "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