> ## 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 conference records

> List Google Meet conferences with provider filtering and pagination.

`listGoogleMeetConferenceRecords` returns one page of active and completed conference records.

## Example

```ts theme={null}
import { automation, onHttpRequest } from "automate.ax"
import { listGoogleMeetConferenceRecords } from "automate.ax/google-meet"

export default automation("List recent conferences", () => {
  onHttpRequest({ scope: "automation" })

  return listGoogleMeetConferenceRecords({
    filter: 'space.meeting_code = "abc-defg-hij"',
    pageSize: 25,
  })
})
```

## Inputs

All inputs are optional: `filter`, `pageSize` from 1 to 100, and `pageToken`. Google filters can select by space, start time, or end time. Second argument `{ account }` selects the Google Account. Inputs accept compatible signals.

## Output

Returns `{ conferenceRecords: ConferenceRecord[]; nextPageToken?: string }`. Pass `nextPageToken` into another call to retrieve the next page.
