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

> List transcript sessions and generated Docs files for a conference.

`listGoogleMeetTranscripts` returns one page of transcripts for a conference record.

## Example

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

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

  return listGoogleMeetTranscripts({
    conferenceRecord: "conferenceRecords/record-id",
  })
})
```

## 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 `{ transcripts: Transcript[]; nextPageToken?: string }`. See [Get transcript](/reference/integrations/google-meet/actions/get-transcript#output) for each transcript shape.
