Setting Up Webhooks
Webhooks allow your application to receive real‑time notifications when certain events occur. Follow these steps to configure a webhook endpoint.
- Choose an HTTPS URL that can accept POST requests.
- Copy the sample
cURLcommand below and replace{YOUR_ENDPOINT}with your URL. - Register the webhook in the dashboard or via the API.
- Test the webhook using the form below.
Sample cURL Command
curl -X POST https://{YOUR_ENDPOINT} -H "Content-Type: application/json" -d '{"event":"test","data":{"message":"Hello from webhook!"}}'