> ## 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 contact folders

> List contact folders through the Brevo API.

`brevo.listContactFolders` list contact folders through the Brevo API.

## Example

```ts theme={null}
import { automation, onDashboardRun } from "automate.ax"
import { brevo } from "automate.ax/brevo"

export default automation("List contact folders", () => {
  onDashboardRun({ title: "List contact folders" })

  brevo.listContactFolders({ limit: 20 })
})
```

## Inputs and output

Inputs: `limit` is 0–50 and defaults to 10, `offset` defaults to 0, and `sort` defaults to `desc`.

`{ count, folders }` with subscriber totals. Use `offset`, `limit`, and `sort` for pagination. Pass `{ account }` as the second argument to select a named Brevo account binding.
