Skip to main content

How to Show a Custom Confirmation Page With Additional Resources After Scheduling?

  • November 29, 2025
  • 1 reply
  • 25 views

Hi everyone,
I’m currently trying to set up a workflow in Calendly that redirects users after they book a meeting to a custom thank-you or resource page with important instructions and helpful links.

I see there’s an option for a redirect URL, but I’m not sure how to customize it per event type or add multiple resource options.
Is there a way to dynamically change the post-booking page based on the event selected?
Or do I need an external integration like Zapier or webhooks for this?

For reference, here’s an example of a resource-style page format:
Streaming Resource Page

Any guidance or best practices would be greatly appreciated! Thanks 😊

1 reply

  • New Community Member
  • November 29, 2025

Hey ​@Adam44850,

You can pass the event type details as query params in your redirect URL (https://help.calendly.com/hc/en-us/articles/ [removed by moderator] -How-to-redirect-invitees-to-another-site-after-booking?locale=en-us#h_01K89KX9CD18V6Z0WD9VWNH1YP).

For example, you could have all event types redirect to the same URL - then dynamically redirect the user based on the query params (using javascript).

// Get URL parameters
const params = new URLSearchParams(window.location.search);

// Check if event_type_name == "ios"
if (params.get("event_type_name") === "ios") {
window.location.href = "https://onstreams.co.za/onstream-for-ios/";
}