> ## 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 invitees

> List invitees for one Calendly scheduled event.

`calendly.listEventInvitees` accepts an event UUID and returns paginated invitees.

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

export default automation("List Calendly invitees", () => {
  onDashboardRun({ title: "List Calendly invitees" })
  const page = calendly.listEventInvitees({
    eventId: "event-id",
    status: "active",
  })
  sendEmail({ subject: "Active invitees", text: JSON.stringify(page.items) })
})
```

Filter by `email` or `status`; sorting defaults to `created_at:asc`. Invitees contain questions, tracking, payment and no-show state, plus cancellation and rescheduling URLs.
