Creates a new event functionality from provided data
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": "db2f91e5-e1d5-4011-be90-1830957f1d7b",
"type": "incident_event_functionalities",
"attributes": {
"incident_event_id": "d7819aee-649f-482b-a98c-de9fff1fb531",
"functionality_id": "ea3aa620-914e-43c6-bfc1-479bd7c8eb9f",
"status": "partial_outage"
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Show child attributes
incident_event_functionality created
Show child attributes
Was this page helpful?
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": "db2f91e5-e1d5-4011-be90-1830957f1d7b",
"type": "incident_event_functionalities",
"attributes": {
"incident_event_id": "d7819aee-649f-482b-a98c-de9fff1fb531",
"functionality_id": "ea3aa620-914e-43c6-bfc1-479bd7c8eb9f",
"status": "partial_outage"
}
}
}