tidyCal.listAvailableTimeslots lists availability for one booking type.
automations/list-tidycal-timeslots.automation.ts
items with startsAt, endsAt, and availableBookings. Capacity matters for group booking types.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Lists bookable times for a TidyCal booking type.
tidyCal.listAvailableTimeslots lists availability for one booking type.
import { automation, onDashboardRun } from "automate.ax"
import { tidyCal } from "automate.ax/tidycal"
export default automation("List TidyCal availability", () => {
onDashboardRun({ title: "List TidyCal availability" })
tidyCal.listAvailableTimeslots({
bookingTypeId: 123,
startsAt: "2026-08-28T00:00:00Z",
endsAt: "2026-08-29T00:00:00Z",
})
})
items with startsAt, endsAt, and availableBookings. Capacity matters for group booking types.