Setup Guide
Configure webhooks to receive real-time updates from your Web2App funnels.
Configuration Steps
Register Your Endpoint
Use our dashboard or API to register your webhook endpoint:
Go to
Settings → Developer
Enter your HTTPS endpoint URL in the
Webhook URL
fieldClick
Save
, then copy the webhook secretUse the webhook secret to authenticate incoming requests to your webhook endpoint
Save Your Secret
After registration, you'll see a webhook secret. Store it securely:
# .env
ZELLIFY_WEBHOOK_SECRET=whsec_abcdef123456...
Configure Your Server
Your webhook endpoint should:
Be publicly accessible via HTTPS
Respond within 3 seconds
Validate webhook signatures
Process events asynchronously
Last updated