Links

Alerts API

Describes the alerts API.
The Alerts API provides endpoints for retrieving and deleting alerts. Alerts can optionally be generated when a filter strategy's condition is met. See Alerts for more information on Philter alerts.
The curl example commands shown on this page are written assuming Philter has been enabled for SSL. If launched from a cloud marketplace, SSL will be enabled automatically with a self-signed SSL certificate. See the SSL/TLS Settings for more information.
get
https://philter:8080
/api/alerts
Example request:
curl -k https://localhost:8080/api/alerts
delete
https://philter:8080
/api/alerts/{alertId}
Delete an Alert
Example request to delete an alert with id 12345:
curl -k -X DELETE https://localhost:8080/api/alerts/12345