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": "4c078728-993a-4dee-bbaf-2e834fd191d9",
"type": "incident_event_services",
"attributes": {
"incident_event_id": "5ff8350a-8681-4f61-95e9-87ab2fedef08",
"service_id": "8ec768df-1724-493d-8a8e-581da9db1c12",
"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": "4c078728-993a-4dee-bbaf-2e834fd191d9",
"type": "incident_event_services",
"attributes": {
"incident_event_id": "5ff8350a-8681-4f61-95e9-87ab2fedef08",
"service_id": "8ec768df-1724-493d-8a8e-581da9db1c12",
"status": "partial_outage"
}
}
}