Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.corsair.dev/llms.txt

Use this file to discover all available pages before exploring further.

The Cal.com plugin syncs data locally. Use corsair.cal.db.<entity>.search({ data, limit?, offset? }) with the filters listed per entity.

Bookings

Path: cal.db.bookings.search
const rows = await corsair.cal.db.bookings.search({
    data: { /* filters below */ },
    limit: 100,
    offset: 0,
});

Searchable filters

FieldTypeOperators
entity_idstringequals, contains, startsWith, endsWith, in
idnumberequals, gt, gte, lt, lte, in
bookingIdnumberequals, gt, gte, lt, lte, in
uidstringequals, contains, startsWith, endsWith, in
titlestringequals, contains, startsWith, endsWith, in
descriptionstringequals, contains, startsWith, endsWith, in
statusstringequals, contains, startsWith, endsWith, in
startstringequals, contains, startsWith, endsWith, in
startTimestringequals, contains, startsWith, endsWith, in
endstringequals, contains, startsWith, endsWith, in
endTimestringequals, contains, startsWith, endsWith, in
durationnumberequals, gt, gte, lt, lte, in
lengthnumberequals, gt, gte, lt, lte, in
eventTypeIdnumberequals, gt, gte, lt, lte, in
meetingUrlstringequals, contains, startsWith, endsWith, in
locationstringequals, contains, startsWith, endsWith, in
createdAtstringequals, contains, startsWith, endsWith, in
updatedAtstringequals, contains, startsWith, endsWith, in
cancellationReasonstringequals, contains, startsWith, endsWith, in
reschedulingReasonstringequals, contains, startsWith, endsWith, in
Every .search() also accepts limit and offset for pagination. .list() is available on the same path without the .search suffix in code — see database operations.