> ## 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 user availability schedules

> List a Calendly user's availability schedules.

`calendly.listUserAvailabilitySchedules` accepts a complete user URI and returns schedule names, timezones, default state, and weekly or date-specific rules.

```ts automations/list-calendly-schedules.automation.ts theme={null}
import { automation, onDashboardRun, sendEmail } from "automate.ax"
import { calendly } from "automate.ax/calendly"

export default automation("List Calendly schedules", () => {
  onDashboardRun({ title: "List Calendly schedules" })
  const schedules = calendly.listUserAvailabilitySchedules({
    user: "https://api.calendly.com/users/user-id",
  })
  sendEmail({
    subject: "Availability schedules",
    text: JSON.stringify(schedules.items),
  })
})
```

This endpoint is not cursor-paginated.
