Creating Alerts Through Events
Creating an alert:
https://api.ilert.com/api/events{
"integrationKey": "il...", // integration key of the alert source (required)
"eventType": "ALERT", // ALERT for creation, ACCEPT or RESOLVE (required)
"summary": "Your alert summary", // (required)
"details": "", // (optional) larger content description of your alert (markdown supported)
"alertKey": "abc123", // (optional) key used to group events together or ACCEPT and existing alert
"priority": "HIGH", // (optional) HIGH (with escalation), LOW (no escalation)
"images": [{"src": "https://...jpeg"}], // (optional) absolute image urls, will be rendered in web/app UI
"links": [{"href": "https://...", "text": "A link"}], // (optional) deeplinks into tools etc., will be rendered in web/app UI
"customDetails": { "some": { "more": "fields" }}, // (optional) additional fields used for templating, sharing or storing information
"routingKey": "abc123" // (optional) overwrite escalation policy of alert source for ALERT events
}More details on fields
alertKey
Alert sourcespriority
routingKey
Code samples
Last updated
Was this helpful?