> ## 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 audit events

> Retrieves one cursor page of account audit activity.

`onePassword.listAuditEvents` retrieves one cursor page of account audit activity.

This action requires an Events API token connection.

## Example

```ts automations/onepassword-list-audit-events.automation.ts theme={null}
import { automation, onSchedule } from "automate.ax"
import { onePassword } from "automate.ax/onepassword"

export default automation("List audit events", () => {
  onSchedule({ schedule: "0 * * * *" })

  onePassword.listAuditEvents({
    startTime: new Date("2026-08-24T00:00:00Z"),
    limit: 100,
  })
})
```

## Inputs

Start a reset query with optional `startTime`, `endTime`, and `limit` up to 1,000, or continue with `{ cursor }`. Do not combine a cursor with reset fields. Every input accepts a compatible signal. Account-backed actions accept an optional second argument `{ account }` to select a named binding.

## Output

Returns `{ items, cursor, hasMore }`. Actor, object, session, location, and activity data is sensitive.
