> ## 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 any scheduling event

> Run an automation for any supported Calendly scheduling lifecycle event.

`calendly.onSchedulingEvent` receives event type, invitee, no-show, and routing form submission events for an organization.

```ts automations/calendly-scheduling-events.automation.ts theme={null}
import { automation, sendEmail } from "automate.ax"
import { calendly } from "automate.ax/calendly"

export default automation("Audit Calendly events", () => {
  const event = calendly.onSchedulingEvent({
    organizationUri: "https://api.calendly.com/organizations/organization-id",
    scope: "organization",
  })
  sendEmail({
    subject: `Calendly: ${event.event}`,
    text: JSON.stringify(event.payload),
  })
})
```

The signal is a discriminated union keyed by `event` and supports only organization scope. Use a semantic trigger when one event family or a user or group scope is enough.
