GET
/
v3
/
alert-event
/
{id}
const fetch = require('node-fetch');

let url = 'https://api.coralogix.com/mgmt/openapi/v3/alert-event/%7Bid%7D?pagination.pageSize=SOME_INTEGER_VALUE&pagination.pageToken=SOME_STRING_VALUE';

let options = {method: 'GET', headers: {Authorization: 'Bearer <API_KEY>'}};

fetch(url, options)
  .then(res => res.json())
  .then(json => console.log(json))
  .catch(err => console.error('error:' + err));
{
  "id": "<string>",
  "singlePermutation": {
    "permutationLabels": {},
    "groupLabels": {},
    "timestamp": "2023-11-07T05:31:56Z",
    "alertId": "<string>",
    "status": "ALERT_STATUS_RESOLVED_OR_UNSPECIFIED",
    "preGroupingEventId": "<string>",
    "payload": {},
    "payloadType": "<string>",
    "permutationId": "<string>",
    "incidentCorrelationKey": "<string>",
    "activityAnalysis": {
      "rules": [
        "<string>"
      ],
      "status": "ACTIVITY_ANALYSIS_STATUS_ACTIVATE_OR_UNSPECIFIED"
    }
  },
  "multiplePermutation": {
    "alertEventMultiplePermutation": [
      {
        "permutationLabels": {},
        "groupLabels": {},
        "timestamp": "2023-11-07T05:31:56Z",
        "alertId": "<string>",
        "status": "ALERT_STATUS_RESOLVED_OR_UNSPECIFIED",
        "preGroupingEventId": "<string>",
        "payload": {},
        "payloadType": "<string>",
        "permutationId": "<string>",
        "incidentCorrelationKey": "<string>",
        "activityAnalysis": {
          "rules": [
            "<string>"
          ],
          "status": "ACTIVITY_ANALYSIS_STATUS_ACTIVATE_OR_UNSPECIFIED"
        }
      }
    ]
  },
  "pagination": {
    "totalSize": 123,
    "nextPageToken": "<string>"
  }
}

Authorizations

Authorization
string
header
required

API key authentication

Path Parameters

id
string
required

Alert event ID

Query Parameters

pagination.pageSize
integer
pagination.pageToken
string

Response

200
application/json

A successful response.

The response is of type object.