Basic usage
Below code snippet can be used to render the booker atom:Team events
For team events, you must setisTeamEvent to true and provide a teamId:
Dynamic bookings
Dynamic bookings allow multiple users to be booked simultaneously. Pass multiple usernames as an array or a plus-separated string:
It is also possible to change the booker layout into a week or column view, you just need to pass in the view prop the layout you want to use. The layouts are as follows: MONTH_VIEW, WEEK_VIEW and COLUMN_VIEW. Both the week and column layouts come with an Overlay Calendar feature, which allows users to overlay multiple calendars on top of their primary calendar.
Below code snippet can be used to render the booker atom with week view
Advanced usage patterns
Prefilling booking form data
You can prefill booking form fields using thedefaultFormValues prop:
Rescheduling bookings
To enable rescheduling, pass therescheduleUid or bookingUid:
Custom start time
Control the first available date shown to users with thestartTime prop:
Handling booking state changes
Monitor the booker’s internal state withonBookerStateChange:
Custom metadata
Pass custom metadata to track booking sources or additional context:Timezone restrictions
Limit available timezones for the booker:Handling slot reservation
Monitor slot reservation events:Custom location URL
Override the default meeting link with a custom URL:Instant meetings
Enable instant meeting mode:Dry run mode
Test booking flows without creating actual bookings:Handling timeslot loading
Execute logic when available timeslots are loaded:CRM integration
Integrate with CRM systems for routing and tracking:Routing form integration
Pass routing form parameters for advanced routing:Controlling URL parameters
By default, the booker doesn’t update URL parameters in platform mode. Enable this behavior:Disabling the confirm button
Conditionally disable the booking confirmation button:Hiding event metadata
Hide the left sidebar containing event details:Round robin configuration
For round robin team events, hide organization and team information:Handling calendar failures silently
Display slots even when third-party calendar credentials are invalid:When
silentlyHandleCalendarFailures is enabled, the booker may show stale availability if calendar credentials are expired or invalid.Custom event meta children
Inject custom React components into the event metadata section:Complete example with all callbacks
State management
The Booker atom uses Zustand for internal state management. You can monitor state changes using theonBookerStateChange callback:
Booker states
The booker progresses through several states during the booking flow:loading- Initial state while event data is being fetchedselecting_date- User is viewing the calendar and selecting a dateselecting_time- User has selected a date and is choosing a time slotbooking- User is filling out the booking formsuccess- Booking has been successfully createderror- An error occurred during the booking process
Available state values
When usingonBookerStateChange, you receive an object containing:
Example: Tracking booking progress
Props reference
Below is a comprehensive list of props that can be passed to the booker atom.| Name | Required | Description |
|---|---|---|
| username | Yes | Username of the person whose schedule is to be displayed |
| eventSlug | Yes | Unique slug created for a particular event |
| orgBannerUrl | No | URL of the user’s current organization |
| customClassNames | No | To pass in custom classnames from outside for styling the atom |
| month | No | The exact month for displaying a user’s availability; defaults to the current month |
| selectedDate | No | Default selected date for which the slot picker opens |
| startTime | No | Custom start time for the Booker that allows users to decide the first available date. Accepts JavaScript Date object or date string in format YYYY-MM-DD (e.g., "2025-08-20" or new Date("2025-08-20")) |
| hideBranding | No | For hiding any branding on the booker |
| isAway | No | Sets the booker component to the away state |
| allowsDynamicBooking | No | Boolean indicating if the booking is a dynamic booking |
| bookingData | No | Data for rescheduling a booking passed in via this prop |
| defaultFormValues | No | Prefilled values for booking form fields like name, email, guests, notes, reschedule reason, etc. |
| isTeamEvent | No | Boolean indicating if it is a team event |
| duration | No | Refers to a multiple-duration event type; selects default if not passed |
| durationConfig | No | Configures selectable options for a multi-duration event type |
| hashedLink | No | Refers to the private link from event types page |
| isInstantMeeting | No | Boolean indicating if the booking is an instant meeting |
| bookingUid | No | Unique ID generated during booking creation |
| rescheduleUid | No | Unique ID generated during booking creation, same as bookingUid |
| locationUrl | No | Custom meeting link URL instead of a Cal.com link |
| firstName | No | First name of the attendee |
| lastName | No | Last name of the attendee |
| guests | No | Invite a guest to join a meeting |
| name | No | Host name |
| onCreateBookingSuccess | No | Callback function for successful booking creation |
| onCreateBookingError | No | Callback function triggered on booking creation failure |
| onCreateRecurringBookingSuccess | No | Callback function for successful recurring booking creation |
| onCreateRecurringBookingError | No | Callback function triggered on recurring booking creation failure |
| onCreateInstantBookingSuccess | No | Callback function for successful instant booking creation |
| onCreateInstantBookingError | No | Callback function triggered on instant booking creation failure |
| onReserveSlotSuccess | No | Callback function for successful slot reservation |
| onReserveSlotError | No | Callback function triggered on slot reservation failure |
| onDeleteSlotSuccess | No | Callback function for successful slot deletion |
| onDeleteSlotError | No | Callback function triggered on slot deletion failure |
| view | No | Specifies the layout of the booker atom into column, week, or month view |
| metadata | No | Used to pass custom metadata values into the booker. Metadata should be an object eg: { bookingSource: "website", userRole: "admin" } |
| bannerUrl | No | Adds custom banner to the booker atom |
| onBookerStateChange | No | Callback function that is triggered when the state of the booker atom changes. |
| allowUpdatingUrlParams | No | Boolean indicating if the URL parameters should be updated, defaults to false. |
| confirmButtonDisabled | No | Boolean indicating if the submit button should be disabled, defaults to false. |
| timeZones | No | Array of valid IANA timezones to be used in the booker. Eg. [“Asia/Kolkata”, “Europe/London”] |
| onTimeslotsLoaded | No | Callback function triggered once the available timeslots have been fetched. |
| roundRobinHideOrgAndTeam | No | Boolean indicating if the organization and team should be hidden in the booker atom sidebar for round robin scheduling type, defaults to false. |
| showNoAvailabilityDialog | No | Boolean indicating if the no availability dialog should be shown, defaults to true. |
| silentlyHandleCalendarFailures | No | Boolean when true the booker still displays slots when the third party calendars credentials are invalid or expired, Booker may show stale availability when enabled |
| hideEventMetadata | No | Boolean that controls the visibility of the event metadata sidebar. When true, hides the left sidebar containing event details like title, description, duration, and host information. Defaults to false. |
| teamId | Conditional | Required when isTeamEvent is true. The numeric ID of the team whose event is being booked. |
| routingFormSearchParams | No | Search parameters from routing forms to pass context for advanced routing logic. Format: "?field1=value1&field2=value2". |
| teamMemberEmail | No | Email of a specific team member to route the booking to. Used in CRM integrations and team routing. |
| crmAppSlug | No | Slug of the CRM app being used (e.g., "salesforce", "hubspot"). Used for CRM-based routing. |
| crmOwnerRecordType | No | Type of CRM record being referenced (e.g., "Lead", "Contact"). Used with CRM integrations. |
| crmRecordId | No | Unique identifier of the CRM record. Used to associate bookings with CRM records. |
| preventEventTypeRedirect | No | Boolean to prevent automatic redirect to event type’s success redirect URL. Defaults to false. |
| handleCreateBooking | No | Custom function to handle booking creation. Overrides the default booking creation logic. |
| onDryRunSuccess | No | Callback function triggered when a dry run booking completes successfully. |
| handleSlotReservation | No | Custom function to handle slot reservation logic. Receives the timeslot string as parameter. |
| entity | No | Entity configuration object containing orgSlug, teamSlug, name, and considerUnpublished properties. |
| eventMetaChildren | No | React node to inject custom content into the event metadata section. |
| defaultPhoneCountry | No | Sets the default country code for phone number inputs in the booking form. Accepts ISO 3166-1 alpha-2 country codes (e.g., "us", "gb", "in", "ee"). When set, phone inputs will default to the specified country’s dialing code. |
Styling
Booker atom accepts custom styles via thecustomClassNames prop. This prop is an object that contains root level styles and nested objects for styling different parts of the booker component. Each nested object groups related styles for a specific section of the booker (e.g., eventMeta, datePicker, availableTimeSlots, etc).
Here is an example booker with root level style bookerContainer and nested object datePickerCustomClassNames with datePickerDatesActive style:
Root Level Styles
| Property | Description |
|---|---|
| bookerContainer | Adds styling to the whole of the booker atom |
Event Meta Styles (eventMetaCustomClassNames)
| Property | Description |
|---|---|
| eventMetaContainer | Styles the event meta component containing details about an event |
| eventMetaTitle | Adds styles to the event meta title |
| eventMetaTimezoneSelect | Adds styles to the event meta timezone selector |
Date Picker Styles (datePickerCustomClassNames)
| Property | Description |
|---|---|
| datePickerContainer | Adds styling to the date picker |
| datePickerTitle | Styles the date picker title |
| datePickerDays | Adds styling to all days in the date picker |
| datePickerDate | Adds styling to all dates in the date picker |
| datePickerDatesActive | Styles only the dates with available slots |
| datePickerToggle | Styles the left and right toggle buttons |
Available Time Slots Styles (availableTimeSlotsCustomClassNames)
| Property | Description |
|---|---|
| availableTimeSlotsContainer | Adds styling to the available time slots component |
| availableTimeSlotsHeaderContainer | Styles only the header container |
| availableTimeSlotsTitle | Adds styles to the title |
| availableTimeSlotsTimeFormatToggle | Adds styles to the format toggle buttons |
| availableTimes | Styles all the available times container |
Confirmation Step Styles (confirmStep)
| Property | Description |
|---|---|
| confirmButton | Styles the confirm button in the booking form |
| backButton | Styles the back button in the booking form |
Rescheduling a booking
The booker atom also supports rescheduling a booking. To reschedule a booking, you need to pass in therescheduleUid prop to the booker atom along with the other necessary props. This will allow the booker to display the reschedule form and handle the rescheduling process. The rescheduleUid is the booking uid you get when you create a booking.
Here is an example of how to use the booker atom for rescheduling an individual event:
teamId is the team id you get when you create a team event.
Here is an example of how to use the booker atom for rescheduling a team event: