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

# On participant left

> Run an automation when a participant leaves Google Meet.

`onGoogleMeetParticipantLeft` emits the completed device-level participant session.

## Example

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

export default automation("Track departures", () => {
  const session = onGoogleMeetParticipantLeft()

  session.endTime
})
```

## Options

`space` optionally limits the trigger to one static space. Omit it to watch owned meeting spaces. `account` optionally selects a static Google Account binding.

## Trigger data

Returns `{ name, startTime, endTime }`. Multiple devices and reconnects create separate sessions for the same participant. The connected user must own or organize the meeting.
