> ## 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 conference started

> Run an automation when a Google Meet conference starts.

`onGoogleMeetConferenceStarted` emits the new conference record when a call starts.

## Example

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

export default automation("Track calls", () => {
  const conference = onGoogleMeetConferenceStarted({
    space: "https://meet.google.com/abc-defg-hij",
  })

  conference.startTime
})
```

## Options

`space` accepts a static resource name, ID, code, or Meet URL. Omit it to watch all meeting spaces owned by the connected user. `account` optionally selects a static Google Account binding.

## Trigger data

Returns `{ name, space, startTime, endTime?, expireTime? }`. Google limits invitees who don't own the space to conference-started and transcript-generated events.
