Redirect After Booking
Send attendees to a custom page after they complete a booking and pass event details to your redirect URL
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
- Analytics/CRM: Track conversions and sync attendee data with your CRM
- 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 Page tab
- Toggle Redirect after booking
- Enter your Redirect URL
- Save changes
Use a complete URL including https://. Relative paths won't work.
Pass Event Details to Your Redirect URL
When you enable Pass event details to redirect URL, meetergo appends booking information as query parameters to your redirect URL. This includes the attendee's name, email, event time, host info, and custom form answers.
This setting is enabled by default for all meeting types.
To configure it:
- Enable Redirect after booking
- Toggle Pass event details to redirect URL on or off
- Save changes
Available Parameters
Event Variables
| Parameter | Type | Description | Example |
|---|---|---|---|
event_type_name | string | Name of the meeting type | Discovery Call |
event_type_uuid | string | Unique ID of the meeting type | abc-123-def |
event_start_time | string | Start time in invitee timezone (ISO 8601) | 2026-02-06T15:00:00+01:00 |
event_end_time | string | End time in invitee timezone (ISO 8601) | 2026-02-06T15:30:00+01:00 |
assigned_to | string | Host/assignee name(s) | Jane Smith |
Invitee Variables
| Parameter | Type | Description | Example |
|---|---|---|---|
invitee_email | string | Attendee email address | max@example.com |
invitee_full_name | string | Full name | Max Mustermann |
invitee_first_name | string | First name (if available) | Max |
invitee_last_name | string | Last name (if available) | Mustermann |
invitee_uuid | string | Unique booking identifier | inv-456-ghi |
UTM Tracking Variables (Pass-Through)
If UTM parameters are present on the booking page URL, they are passed through to the redirect URL:
| Parameter | Description |
|---|---|
utm_source | Traffic source |
utm_medium | Marketing medium |
utm_campaign | Campaign name |
utm_content | Content variant |
utm_term | Search term |
Custom Question Answers
| Parameter | Description |
|---|---|
answer_1 | Response to custom question 1 |
answer_2 | Response to custom question 2 |
| ... | Up to answer_10 |
Example Redirect URL
If your base URL is:
https://yourwebsite.com/thank-you
The attendee will be redirected to:
https://yourwebsite.com/thank-you
?event_type_name=Discovery%20Call
&event_type_uuid=abc-123-def
&event_start_time=2026-02-06T15:00:00%2B01:00
&event_end_time=2026-02-06T15:30:00%2B01:00
&assigned_to=Jane%20Smith
&invitee_email=max%40example.com
&invitee_full_name=Max%20Mustermann
&invitee_first_name=Max
&invitee_last_name=Mustermann
&invitee_uuid=inv-456-ghi
&utm_source=google
&utm_campaign=demo
&answer_1=I%20need%20help%20with%20scheduling
Using Parameters on Your Page
On your redirect page, read these parameters to personalize the experience:
const params = new URLSearchParams(window.location.search);
const email = params.get('invitee_email');
const name = params.get('invitee_full_name');
const eventName = params.get('event_type_name');
const startTime = params.get('event_start_time');
document.getElementById('confirmation').textContent =
`Thanks ${name}! Your ${eventName} is confirmed for ${new Date(startTime).toLocaleString()}.`;
onSuccess JavaScript Callback
When meetergo is embedded on your website, the onSuccess callback also receives the full event details:
window.meetergoSettings = {
onSuccess: function(data) {
console.log(data.invitee_email); // "max@example.com"
console.log(data.invitee_full_name); // "Max Mustermann"
console.log(data.event_type_name); // "Discovery Call"
console.log(data.event_start_time); // "2026-02-06T15:00:00+01:00"
console.log(data.assigned_to); // "Jane Smith"
// Full data object includes:
// appointmentId, secret, event_type_name, event_type_uuid,
// event_start_time, event_end_time, assigned_to,
// invitee_email, invitee_full_name, invitee_first_name,
// invitee_last_name, invitee_uuid, answer_1, answer_2, ...
}
};
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 event detail parameters appear in the URL
- Test on both desktop and mobile
Troubleshooting
Redirect Not Working
- Verify the URL is complete (includes
https://) - Check for typos in the URL
- Ensure Redirect after booking is toggled on
- Save changes and test again
Parameters Missing
- Ensure Pass event details to redirect URL is enabled
- Verify your redirect URL doesn't have existing parameters that conflict
- Check your page's JavaScript for parameter reading errors
- Look at the actual URL in your browser's address bar
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
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. For embedded bookings, the onSuccess callback also provides the event details.
Can I redirect to an external domain?
Yes, you can redirect to any publicly accessible URL.
Can I disable the event detail parameters?
Yes, toggle off Pass event details to redirect URL in the meeting type settings. Only the timezone and existing URL parameters will be forwarded.
Are the parameters URL-encoded?
Yes, all parameter values are automatically URL-encoded. Your web developer can use URLSearchParams or decodeURIComponent() to read them.
Related Articles
Was this article helpful?
Let us know if this article answered your questions.