Retrieves a specific incident_event_functionality by id
curl --request GET \
--url https://api.rootly.com/v1/incident_event_functionalities/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "6470584b-edb2-4642-8058-4c1da01369e0",
"type": "incident_event_functionalities",
"attributes": {
"incident_event_id": "349c62dd-edb8-4463-acc1-39eb91c92e1b",
"functionality_id": "df66adc4-6689-488c-8e7a-a903702841f7",
"status": "partial_outage"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
incident_event_functionality found
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/incident_event_functionalities/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "6470584b-edb2-4642-8058-4c1da01369e0",
"type": "incident_event_functionalities",
"attributes": {
"incident_event_id": "349c62dd-edb8-4463-acc1-39eb91c92e1b",
"functionality_id": "df66adc4-6689-488c-8e7a-a903702841f7",
"status": "partial_outage"
}
}
}