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": "1bd01fce-2f91-4cf7-b8c3-2d41d1b21363",
"type": "incident_event_services",
"attributes": {
"incident_event_id": "653f49e5-4162-477b-a5ee-fc0eec216ef3",
"service_id": "7e68ea37-8a16-4040-b0bb-707cb8318786",
"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": "1bd01fce-2f91-4cf7-b8c3-2d41d1b21363",
"type": "incident_event_services",
"attributes": {
"incident_event_id": "653f49e5-4162-477b-a5ee-fc0eec216ef3",
"service_id": "7e68ea37-8a16-4040-b0bb-707cb8318786",
"status": "partial_outage"
}
}
}