Redirect After Booking
Send attendees to a custom page after they complete a booking
By default, attendees see a confirmation page within meetergo after booking. With the redirect feature, you can send them to any URL instead—your website, a thank-you page, an onboarding flow, or a payment page.
Use Cases
- Thank you page: Show a branded confirmation on your website
- Next steps: Direct to onboarding materials or preparation docs
- Upsell: Send to related products or services
- Survey: Collect immediate feedback
- Payment: Redirect to a payment page for paid consultations
Enable Redirect
- Open your Meeting Type settings
- Go to the Confirmation or After Booking section
- Toggle Enable Redirect
- Enter your Redirect URL
- Save changes
Redirect URL
Enter the full URL where attendees should go:
https://yourwebsite.com/thank-you
Use a complete URL including https://. Relative paths won't work.
Passing Booking Data
You can pass booking information to your redirect URL using query parameters. meetergo automatically appends these when configured:
Available Parameters
| Parameter | Description |
|---|---|
appointmentId | Unique booking identifier |
meetingTypeId | The meeting type ID |
start | Meeting start time (ISO format) |
end | Meeting end time (ISO format) |
attendeeEmail | Attendee's email address |
attendeeName | Attendee's full name |
Example Redirect URL with Parameters
If your base URL is:
https://yourwebsite.com/thank-you
The attendee might be redirected to:
https://yourwebsite.com/thank-you?appointmentId=abc123&attendeeEmail=john@example.com&start=2025-01-15T10:00:00Z
Using Parameters on Your Page
On your thank-you page, read these parameters to personalize the experience:
// JavaScript example
const urlParams = new URLSearchParams(window.location.search);
const appointmentId = urlParams.get('appointmentId');
const attendeeEmail = urlParams.get('attendeeEmail');
// Use the data
document.getElementById('confirmation').textContent =
`Thanks! Your appointment ID is ${appointmentId}`;
Best Practices
Keep It Fast
Your redirect page should load quickly. Attendees just completed an action and expect immediate feedback.
Confirm the Booking
Even on your custom page, confirm that the booking was successful. Include:
- Confirmation message
- Meeting date and time
- Next steps
Mobile-Friendly
Many bookings happen on mobile devices. Ensure your redirect page works well on all screen sizes.
Track Conversions
Use UTM parameters or your analytics tool to track bookings:
https://yourwebsite.com/thank-you?utm_source=meetergo&utm_medium=booking
Testing Redirects
Before going live:
- Make a test booking on your meeting type
- Verify you're redirected to the correct URL
- Check that any passed parameters work correctly
- Test on both desktop and mobile
Troubleshooting
Redirect Not Working
- Verify the URL is complete (includes
https://) - Check for typos in the URL
- Ensure Enable Redirect is toggled on
- Save changes and test again
Wrong Page Loading
- Confirm the URL points to the intended page
- Check for redirects on your server that might interfere
- Clear browser cache and test again
Parameters Missing
- Verify your redirect URL doesn't already have query parameters that conflict
- Check your page's JavaScript for parameter reading errors
- Look at the actual URL in your browser's address bar
FAQ
Can I redirect to different pages based on the meeting type?
Yes, each meeting type has its own redirect setting. Configure different URLs for different meeting types.
Does the redirect work with embedded booking pages?
Yes, the redirect works the same way whether the booking is on meetergo directly or embedded on your website.
Can I redirect to an external domain?
Yes, you can redirect to any publicly accessible URL.
What if my redirect page is down?
If your redirect URL fails, attendees may see an error. Ensure your thank-you page is reliable and has good uptime.
Related Articles
Was this article helpful?
Let us know if this article answered your questions.