> ## 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 meeting locations

> List the meeting location types connected to a Calendly user.

`calendly.listUserMeetingLocations` returns the meeting location types a user can assign to event types.

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

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

Pass the complete user URI. Each result identifies the location kind and whether the provider connection is available. This endpoint is not cursor-paginated.
