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

> List recording sessions and generated Drive files for a conference.

`listGoogleMeetRecordings` returns one page of recordings for a conference record.

## Example

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

export default automation("List conference recordings", () => {
  onHttpRequest({ scope: "automation" })

  return listGoogleMeetRecordings({
    conferenceRecord: "conferenceRecords/record-id",
    pageSize: 50,
  })
})
```

## Inputs

Provide `conferenceRecord`. Optional `pageSize` accepts 1–100 and `pageToken` continues a previous request. Second argument `{ account }` selects the Google Account. Inputs accept compatible signals.

## Output

Returns `{ recordings: Recording[]; nextPageToken?: string }`. See [Get recording](/reference/integrations/google-meet/actions/get-recording#output) for each recording shape.
