> ## 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 event type hosts

> List the Calendly hosts assigned to an event type.

`calendly.listEventTypeHosts` accepts the complete `eventType` URI and returns paginated membership records with event type and member details.

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

export default automation("List Calendly event hosts", () => {
  onDashboardRun({ title: "List Calendly hosts" })
  const page = calendly.listEventTypeHosts({
    eventType: "https://api.calendly.com/event_types/event-type-id",
  })
  sendEmail({ subject: "Event hosts", text: JSON.stringify(page.items) })
})
```

Use `count` and `pageToken` for pagination.
