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

> Subscribes at a meeting's scheduled start time.

`calcom.onMeetingStarted` subscribes at a meeting's scheduled start time. Cal.com sends this delayed event as a flat booking object; booking fields such as `uid` are at the event root.

```ts automations/on-meeting-started.automation.ts theme={null}
import { automation, markSignificant } from "automate.ax"
import { calcom } from "automate.ax/calcom"

export default automation("On meeting started", () => {
  const event = calcom.onMeetingStarted()
  markSignificant(event)
})
```

## Event

| Field                         | Type                 | Required |
| ----------------------------- | -------------------- | -------- |
| `attendees`                   | `object[]`           | Yes      |
| `attendees[].email`           | `string (email)`     | Yes      |
| `attendees[].id`              | `integer`            | No       |
| `attendees[].language`        | `object`             | Yes      |
| `attendees[].language.locale` | `string`             | Yes      |
| `attendees[].name`            | `string`             | Yes      |
| `attendees[].phoneNumber`     | `string \| null`     | No       |
| `attendees[].timeZone`        | `string`             | Yes      |
| `attendees[].username`        | `string \| null`     | No       |
| `attendees[].utcOffset`       | `number`             | No       |
| `createdAt`                   | `string (date-time)` | Yes      |
| `endTime`                     | `string`             | Yes      |
| `id`                          | `integer`            | Yes      |
| `startTime`                   | `string`             | Yes      |
| `title`                       | `string`             | Yes      |
| `uid`                         | `string`             | Yes      |
| `triggerEvent`                | `"MEETING_STARTED"`  | Yes      |

Additional provider fields are preserved.

Automate.ax creates and maintains the Cal.com webhook, verifies `x-cal-signature-256`, and deduplicates provider retries. Use `calcom.onEvent` when one automation should receive every supported Cal.com event.
