logo
EasyListing
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:

{
  "event": "waitlist.signup",
  "created_at": "2023-04-01T12:00:00Z",
  "data": {
    "waitlist_id": "waitlist_9d8c7b6a5f4e3d2c1b0a",
    "email": "user@example.com",
    "name": "John Doe",
    "referral_code": "ABC123",
    "count": 42
  }
}

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

On this page