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

> List users in the connected Apollo workspace.

`listUsers` returns one explicit page of workspace users.

```ts automations/list-apollo-users.automation.ts theme={null}
import { automation, onHttpRequest } from "automate.ax"
import { listUsers } from "automate.ax/apollo"

export default automation("List Apollo users", () => {
  onHttpRequest({ scope: "automation" })
  listUsers({ page: 1, perPage: 100 })
})
```

`page` defaults to `1`; `perPage` defaults to `100` and is limited to 1–100.
Optional `account` selects the binding. Returns `{ users, pagination }`. Users
include stable ID, name, deletion state, and optional email, names, title,
team, CRM, and creation metadata.
