Skip to main content
Get multiple incidents by IDs
curl --request GET \
  --url https://api.coralogix.com/mgmt/openapi/latest/incidents/incidents/v1/batch \
  --header 'Authorization: <api-key>'
{
  "incidents": {},
  "notFoundIds": [
    "not_found_id_1",
    "not_found_id_2"
  ]
}

Authorizations

Authorization
string
header
required

API key authentication

Query Parameters

ids
string[]

Response

Response containing the requested incidents and any IDs that weren't found

incidents
object
required

Map of incident IDs to their corresponding incidents

notFoundIds
string[]
required

List of IDs that were not found

Example:
["not_found_id_1", "not_found_id_2"]