Skip to main content

Confirmation Page

Choose where to redirect invitees after a call is booked

Updated this week

After a lead successfully books a call, they’re redirected to a confirmation page.

This step reassures them that the booking was successful and provides immediate clarity and confidence that the meeting is scheduled.

iClosed provides two Confirmation page options:

  1. iClosed Confirmation Page

    1. Redirect the invitee to an iClosed-hosted confirmation page (default confirmation page)

    2. This option is convenient, quick to set up, and automatically displays the meeting time, host, location, and calendar integration options.

  2. External URL, with embedded confirmation details (optional)

    1. Redirect invitees to your own custom confirmation or thank-you page.

    2. Use the iClosed embed code to display meeting details directly on your website, keeping the experience branded and seamless.

The same embed code will work for all events. If you have multiple events in iClosed routed to a single external URL the embed code will automatically display the correct confirmation details based on the event the lead was routed to.

One note though, call confirmation widget will be visible only when a call is actually booked and invitee is redirected to the call confirmation page (wont appear in preview mode as scheduling widget for example).

Pro tips

The code is optimized for all webpage builders, but Framer will require this adjusted code. Make sure to copy it from here and paste it as custom code created in Framer assets.

import { useEffect } from "react"

export default function MiniEmbed() {
useEffect(() => {
const script = document.createElement("script")
script.src = "https://app.iclosed.io/assets/widget.js"
script.async = true
document.body.appendChild(script)
}, [])

return (
<div
className="call-details-widget"
data-url="https://app.iclosed.io/embed"
style={{ width: "500px", height: "360px" }}
></div>
)
}

If you're using Wix, bear in mind that Wix won't allow redirections outside of the parent page after the call is booked unless you're on Premium Wix Plan.

In case your Wix plan doesn't support this option, you can use following workaround:

  • Set up standard redirecting on a click of a button - e.g. Book a call here button on your main page

  • Add direct iClosed scheduling link instead of the embed code

  • This will open iClosed scheduler external URL that will lead later to thank you page as per Confirmation page settings in iClosed.

  • after the call is booked, it will redirect automatically to confirmation page URL that you've set in iClosed event settings


Enable forwarding of event parameters to an external URL

iClosed will forward parameters from the scheduler along with the UTMs collected at the time of the booking. This option is turned on by default for every event, Here're the parameters that we'll be sending:

  • assigned_to=host first name + host last name &

  • event_type_uuid=ID of the event &

  • closer_id= user ID &

  • link_prefix=scheduler link defined by event creator &

  • timeZone=invitee time zone &

  • language=of the scheduler &

  • event_type_name=event name &

  • event_start_time=start time of the call &

  • event_end_time=end time of the call &

  • invitee_uuid=ID of the invitee &

  • invitee_full_name=invitee name &

  • Invitee_email=email of the invitee &

  • text_reminder_number=invitee phone number &

  • answer_1=email or phone number depending of what's primary on the form &

  • hyros=enabled &

  • previewId=call id

  • any UTM collected at the time of the lead interaction with the scheduler

When option is disabled, parameters won't be forwarded to the external URL, and the embedded thank you page will not be visible.


Did this answer your question?