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

# Update contact list

> Rename or move a Brevo contact list.

`updateContactList` changes a list's name, parent folder, or both without
changing its contact memberships.

## Example

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

export default automation("Archive a contact list", () => {
  onHttpRequest({ scope: "automation" })

  updateContactList({ list: "2026 Launch", folder: "Archive" })
})
```

`list: string | number` is required. Provide a new non-empty `name`, a target
folder name/ID, or both. `account` selects the Brevo binding. Names resolve by
case-insensitive exact match and must be unambiguous.

Returns `Signal<void>` after Brevo accepts the update.
