Skip to main content

Confirmation Page

Choose where to redirect invitees after a call is booked

Updated over 2 weeks ago

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.

Pro tips

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.

The code is optimized for all webpage builders, but for 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>
)
}
Did this answer your question?