Skip to main content

Webhook Alerts

AlertFleet allows you to send webhook notifications to any external system capable of receiving HTTP requests.

When a webhook alert is triggered, the specified URL (the webhook endpoint) receives an HTTP request, depending on the chosen method.

Request Methods

GET

If the method is GET, the webhook endpoint will receive a simple HTTP GET request with no body.

POST

If the method is POST, the webhook endpoint will receive a request with a JSON payload like the following:

{
"message": "This is a sample notification message sent with AlertFleet",
"level": "danger"
}

The message field contains the alert text, and level can indicate the severity (e.g., info, warning, danger).

warning

Webhook notifications are available depending on your subscription plan. Please refer to the pricing page for details on available features.