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

# Every Webflow event

> Subscribes to every supported webhook event for one site.

`webflow.onEvent` subscribes to every supported webhook event for one site.

## Example

```ts automations/webflow-on-event.automation.ts theme={null}
import { automation } from "automate.ax"
import { webflow } from "automate.ax/webflow"

export default automation("Every Webflow event", () => {
  webflow.onEvent({ siteId: "site-id" })
})
```

## Inputs

`siteId` is the Webflow site to watch. You can pass `account` to select a named Webflow account. The connection needs `sites:write` to manage the provider webhook and the read scope for this event.

<Note>
  This broad trigger registers all 14 Webflow webhook event types for the site.
  Use a semantic trigger when the automation needs only one event type.
</Note>

## Output

Returns the verified Webflow envelope with `triggerType` and its typed `payload`. Each authenticated delivery starts an ordinary root context.
