Skip to main content
The Webhooks tab of the observability dashboard shows the delivery status of every webhook event dispatched to your endpoints.

Webhook event log

Each entry includes:
ColumnDescription
Event typeThe event that triggered the webhook (e.g. email.delivered)
EndpointThe webhook URL the event was sent to
StatusWhether the delivery succeeded or failed
AttemptsNumber of delivery attempts made
TimestampWhen the event was dispatched
Click any row to expand delivery details, including the request payload and the response received from your endpoint.

Troubleshooting failed deliveries

If events are failing:
  1. Verify your endpoint is publicly reachable and returns a 2xx status code.
  2. Check that signature verification in your handler is not rejecting valid requests.
  3. Review the response body in the expanded row — it may contain error details from your server.
Nuntly retries failed webhook deliveries with exponential backoff. You can also view delivery attempts for a specific event by expanding the row.

Learn more