Find out how to manage the booking flow.
my-app.com/bookings
as the redirectURI.my-app.com/bookings/[bookingUid]
page where bookingUid will become path parameter.useBooking
hook, then extract bookingUid from URL parameter, and uses the hook to display booking information. Because
useBooking
hook can return individual booking or an array of recurring bookings, you need to handle single booking and array of bookings cases separately:my-app.com/bookings/reschedule
as the redirectURI.my-app.com/reschedule?rescheduleUid=buiaE8jHmNAxLrqitahCeL&eventTypeSlug=thirty-minutes
rescheduleUid
and eventTypeSlug
from the query parameters and passes the to the Booker
atom:my-app.com/bookings/cancel
as the cancelURI.my-app.com/bookings/cancel/[bookingUid]
page where bookingUid will become path parameter.useBooking
hook can return individual booking or an array of recurring bookings, you need to handle single booking and array of bookings cases separately: