Features
Custom Sign-Up Redirect
By default, when someone joins your waitlist they're shown the Waitlister thank-you page. With a custom sign-up redirect, you can instead send subscribers straight to a URL of your own — your website, a welcome page, an onboarding flow, or a special offer.
How It Works
When a redirect is configured and enabled, a successful sign-up sends the subscriber to your URL instead of the Waitlister thank-you page. This applies everywhere people can join:
- Your landing page
- An embedded form on your own site
- The form action endpoint (no-JavaScript forms)
- Double opt-in waitlists — the redirect happens after the subscriber confirms their email, since that's the moment they actually join
The API (/api/v1/.../sign-up) is unaffected — it always returns the standard response data so your integration stays in control of what happens next.
Setting Up a Redirect
- Go to your waitlist dashboard
- Open Settings and select the Links tab
- Find Custom sign-up redirect and toggle it on
- Enter the URL you want subscribers sent to (must start with
https://) - Click Update
To turn it off again, simply toggle it off — subscribers will go back to the standard thank-you page.
Passing Variables in the URL
You can include placeholders in your redirect URL that Waitlister fills in automatically for each subscriber. This lets your destination page personalize the experience or attribute referrals.
| Variable | Replaced with |
|---|---|
{email} | The subscriber's email address |
{name} | The subscriber's name (if collected) |
{position} | Their position on the waitlist |
{points} | Their current points total |
{referral_code} | Their unique referral code |
Place any of these in your URL and they'll be substituted at sign-up time. Each value is automatically URL-encoded so it's safe to use in a query string.
Example
A redirect URL like this:
https://yoursite.com/welcome?email={email}&ref={referral_code}
Becomes something like this for the subscriber:
https://yoursite.com/welcome?email=jane%40example.com&ref=happy-star-3f2a
{email} or {name} puts personal data in the URL, where it may appear in your server logs and browser history.Requirements and Notes
- The URL must be a valid
https://(orhttp://) address. - The feature must be enabled on your plan. If you downgrade, redirects stop automatically and subscribers return to the thank-you page.
- Only successful, completed sign-ups are redirected. For double opt-in waitlists, that means after email confirmation — not at the moment the form is submitted.
Help and Support
Need a hand setting up your redirect? We're here to help:
- Contact us via the public contact form
- Access the "Help" page in your account dashboard
- Learn more about the default thank-you page
