GET
/
v2
/
organizations
/
{orgId}
/
teams
/
{teamId}
/
bookings

Path Parameters

teamId
number
required

Query Parameters

status
enum<string>[]

Filter bookings by status. If you want to filter by multiple statuses, separate them with a comma.

Available options:
upcoming,
recurring,
past,
cancelled,
unconfirmed
attendeeEmail
string

Filter bookings by the attendee's email address.

attendeeName
string

Filter bookings by the attendee's name.

eventTypeIds
string

Filter bookings by event type ids belonging to the team. Event type ids must be separated by a comma.

eventTypeId
string

Filter bookings by event type id belonging to the team.

afterStart
string

Filter bookings with start after this date string.

beforeEnd
string

Filter bookings with end before this date string.

sortStart
enum<string>

Sort results by their start time in ascending or descending order.

Available options:
asc,
desc
sortEnd
enum<string>

Sort results by their end time in ascending or descending order.

Available options:
asc,
desc
sortCreated
enum<string>

Sort results by their creation time (when booking was made) in ascending or descending order.

Available options:
asc,
desc
take
number

The number of items to return

Required range: 1 < x < 250
skip
number

The number of items to skip

Required range: x > 0

Response

200 - application/json
status
enum<string>
required
Available options:
success,
error
data
object[]
required

Array of booking data, which can contain either BookingOutput objects or RecurringBookingOutput objects

error
object