curl --request GET \
--url https://api.coralogix.com/mgmt/openapi/latest/incidents/incidents/v1/{incident_id}/events \
--header 'Authorization: <api-key>'{
"incidentEvents": [
{
"id": "incident_event_id",
"incidentEventType": "INCIDENT_EVENT_TYPE_UNSPECIFIED",
"originatorType": "ORIGINATOR_TYPE_UNSPECIFIED",
"administrativeEvent": {
"userId": "<string>"
},
"close": {
"closedBy": {
"userId": "user_id"
}
}
}
]
}Retrieve a chronological list of all events associated with a specific incident. Includes state changes, assignments, acknowledgments, and resolutions.
Requires the following permissions:
incidents:readcurl --request GET \
--url https://api.coralogix.com/mgmt/openapi/latest/incidents/incidents/v1/{incident_id}/events \
--header 'Authorization: <api-key>'{
"incidentEvents": [
{
"id": "incident_event_id",
"incidentEventType": "INCIDENT_EVENT_TYPE_UNSPECIFIED",
"originatorType": "ORIGINATOR_TYPE_UNSPECIFIED",
"administrativeEvent": {
"userId": "<string>"
},
"close": {
"closedBy": {
"userId": "user_id"
}
}
}
]
}API key authentication
ID of the incident to retrieve events for
"incident_id"
Response containing all events associated with the requested incident
Show child attributes
Was this page helpful?