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

> List participant identities and attendance intervals for a conference.

`listGoogleMeetParticipants` returns one page of participants in a conference record.

## Example

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

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

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

## Inputs

Provide `conferenceRecord`. Optional `filter` selects by the first start or final end time. `pageSize` accepts 1–250, and `pageToken` continues a previous request. Second argument `{ account }` selects the Google Account. Inputs accept compatible signals.

## Output

Returns `{ participants, totalSize?, nextPageToken? }`. Each participant includes its identity variant and observed attendance interval.
