Api reference
Webhooks
🔔 Webhook Usage
Webhooks allow you to receive real-time notifications about subscriber events. Once configured, your endpoint will receive HTTP POST
requests whenever an event occurs.
📌 Webhook Payload
A webhook request contains the following JSON payload:
📢 Webhook Events
Webhooks support the following event types:
✅ waitlist.signup
Triggered when a new user joins the waitlist.
❌ waitlist.unsubscribed
Triggered when a user is removed from the waitlist.
🔧 Configuring Webhooks
- You can set up webhooks in your project settings.
- Ensure your endpoint is publicly accessible and can handle
POST
requests. - Webhooks should return a
2xx
status code to acknowledge receipt.
📌 Need more help? Check out our API Reference.