> ## 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 account activity

> List Brevo security and configuration activity.

`brevo.listAccountActivity` list Brevo security and configuration activity.

## Example

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

export default automation("List account activity", () => {
  onDashboardRun({ title: "List account activity" })
  brevo.listAccountActivity({ startDate: "2026-08-01", endDate: "2026-08-07" })
})
```

## Inputs

`limit` defaults to 50 and accepts up to 500; `offset` defaults to 0. Filter by `userEmail`. Provide both `startDate` and `endDate` in `YYYY-MM-DD` form or neither. A range can span at most one month and must fall within the preceding 12 months. This endpoint requires a Brevo Enterprise plan. The second argument can select `{ account }`.

## Output

Returns `{ logs }`. Each log includes `action`, `date`, `userAgent`, `userEmail`, and `userIp`. Advance `offset` by the number of rows returned.
