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

> Starts an automation for any supported ElevenLabs workspace event.

`elevenLabs.onEvent` takes no filters and starts for flow generation, asynchronous transcription, and voice-library removal events. It returns the normalized provider payload. Use a narrower trigger when your automation handles one event family.

```ts automations/handle-elevenlabs-events.automation.ts theme={null}
import { automation, markSignificant } from "automate.ax"
import { elevenLabs } from "automate.ax/elevenlabs"

export default automation("Handle ElevenLabs events", () => {
  markSignificant(elevenLabs.onEvent({}))
})
```

The connected API key must be able to manage workspace webhooks. Automate.ax creates and maintains the HMAC-authenticated endpoint.
