> ## 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 participant sessions

> List device-level join sessions for one Google Meet participant.

`listGoogleMeetParticipantSessions` returns the individual join intervals behind a participant's aggregate attendance.

## Example

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

export default automation("List join sessions", () => {
  onHttpRequest({ scope: "automation" })

  return listGoogleMeetParticipantSessions({
    participant: "conferenceRecords/record-id/participants/participant-id",
    pageSize: 100,
  })
})
```

## Inputs

Provide the full `participant` resource name. Optional `filter` selects by start or 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 `{ participantSessions: ParticipantSession[]; nextPageToken?: string }`.
