> ## Documentation Index
> Fetch the complete documentation index at: https://docs.automate.ax/llms.txt
> Use this file to discover all available pages before exploring further.

> ## Agent Instructions
> Automate.ax automations are TypeScript programs.
> Use Bun for installation and command examples.
> Use Automate.ax for the product name and automate.ax for the package, CLI, and domain.
> Treat documented public APIs as current; do not invent transitional or deprecated names.

# List team bookings

> Lists bookings for one TidyCal team.

`tidyCal.listTeamBookings` lists bookings owned by one team.

```ts automations/list-tidycal-team-bookings.automation.ts theme={null}
import { automation, onDashboardRun } from "automate.ax"
import { tidyCal } from "automate.ax/tidycal"

export default automation("List TidyCal team bookings", () => {
  onDashboardRun({ title: "List TidyCal team bookings" })
  tidyCal.listTeamBookings({
    teamId: 123,
    startDate: "2026-08-01",
    endDate: "2026-08-31",
    cancelled: false,
  })
})
```

Team actions require an Agency or Pro plan. `teamId` is required. Optional filters are `startDate`, `endDate`, contact `email`, `hostId`, `cancelled`, and `page`, which defaults to `1`. The result contains `items` using the same complete booking shape as `listBookings`.
