Bookings

These routes allow you to CRUD bookings within Cal.com.

Find all bookings

GET

/bookings

Please note that the use of userId for filtering the bookings in the GET request is an ADMIN only call. This will not yeild the filtering for non-admin API calls

Create a new booking

POST

/bookings

Find a booking

GET

/bookings/{id}

Edit an existing booking

PATCH

/bookings/{id}

Remove an existing booking

DELETE

/bookings/{id}/cancel

Was this page helpful?