Wrong ❌ | Correct ✅ | Comments |
---|---|---|
Cal.ns.yournamespace.on(...) | Cal.ns.yournamespace('on', ...) | To be used when a namespace is used which you can identify by seeing if “init” call has namespace in it.Cal("init", "yournamespace", { origin: "https://cal.com" }) .The Embed snippet you get from the Cal.com app uses a namespace derived from the event type slug. |
Cal.on(...) | Cal('on', ...) | To be used when namespace is not used which you can identify by seeing if the “init” call has no namespace in it.Cal("init", { origin: "https://cal.com" }) |
eventTypeSelected
eventType
: object
- Event Type that has been selectedbookingSuccessfulV2
It deprecates bookingSuccessful event.
Description: When a fresh booking is successfully done. It might not be confirmed.
Properties:
uid
: string
| undefined
- Unique identifier for the bookingtitle
: string
| undefined
- Title of the bookingstartTime
: string
| undefined
- Start time of the bookingendTime
: string
| undefined
- End time of the bookingeventTypeId
: number
| null
| undefined
- Event type id of the bookingstatus
: string
| undefined
- Status of the bookingpaymentRequired
: boolean
- Whether payment is required for the bookingisRecurring
: boolean
- Whether the booking is recurringallBookings
: object
- Array of objects with startTime
and endTime
. Applicable only if isRecurring
is true
videoCallUrl
: string
- URL of the video callrescheduleBookingSuccessfulV2
It deprecates rescheduleBookingSuccessful event.
Description: When a booking is rescheduled.
Properties:
uid
: string
| undefined
- Unique identifier for the bookingtitle
: string
| undefined
- Title of the bookingstartTime
: string
| undefined
- Start time of the bookingendTime
: string
| undefined
- End time of the bookingeventTypeId
: number
| null
| undefined
- Event type id of the bookingstatus
: string
| undefined
- Status of the bookingpaymentRequired
: boolean
- Whether payment is required for the bookingisRecurring
: boolean
- Whether the booking is recurringallBookings
: object
- Array of objects with startTime
and endTime
. Applicable only if isRecurring
is true
linkReady
linkFailed
code
: number
- Error Codemsg
: string
- Human Readable msgdata
: object
- More details to debug the error