Knowledge Base

Setting Up Webhooks

Webhooks allow your application to receive real‑time notifications when certain events occur. Follow these steps to configure a webhook endpoint.

  1. Choose an HTTPS URL that can accept POST requests.
  2. Copy the sample cURL command below and replace {YOUR_ENDPOINT} with your URL.
  3. Register the webhook in the dashboard or via the API.
  4. 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!"}}'

Test Your Webhook