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 to the Webhook URL field
Save the configuration and copy the webhook secret
Use the webhook secret to authenticate your requests to the webhook endpoint
Save Your Secret
After registration, you'll receive a webhook secret. Store it securely:
# Example .env file
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