Retrieves a specific incident_event_service by id
curl --request GET \
--url https://api.rootly.com/v1/incident_event_services/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "3efe386b-f598-428e-9a55-097f4815b4ff",
"type": "incident_event_services",
"attributes": {
"incident_event_id": "956001d6-83d1-415f-9cc5-0620d01500af",
"service_id": "c11f8528-6142-4576-948b-911c816c3a93",
"status": "partial_outage"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
incident_event_service found
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/incident_event_services/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "3efe386b-f598-428e-9a55-097f4815b4ff",
"type": "incident_event_services",
"attributes": {
"incident_event_id": "956001d6-83d1-415f-9cc5-0620d01500af",
"service_id": "c11f8528-6142-4576-948b-911c816c3a93",
"status": "partial_outage"
}
}
}