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:

  1. Go to Settings -> Developer

  2. Enter your HTTPS endpoint URL to the Webhook URL field

  3. Save the configuration and copy the webhook secret

  4. 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