> ## 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 routing forms

> List Calendly routing forms for an organization.

`calendly.listRoutingForms` requires Calendly Teams or above and a complete organization URI.

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

export default automation("List Calendly routing forms", () => {
  onDashboardRun({ title: "List routing forms" })
  const page = calendly.listRoutingForms({
    organization: "https://api.calendly.com/organizations/organization-id",
    sort: "created_at:desc",
  })
  sendEmail({ subject: "Routing forms", text: JSON.stringify(page.items) })
})
```

Each form includes its status and typed questions. Use `count` and `pageToken` for pagination.
