> ## 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 smart notes

> List Gemini smart-note sessions and generated Docs files for a conference.

`listGoogleMeetSmartNotes` returns one page of smart notes for a conference record.

## Example

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

export default automation("List meeting notes", () => {
  onHttpRequest({ scope: "automation" })

  return listGoogleMeetSmartNotes({
    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 `{ smartNotes: SmartNote[]; nextPageToken?: string }`. See [Get smart note](/reference/integrations/google-meet/actions/get-smart-note#output) for each smart-note shape.
