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

# Comment created

> Starts when a design-review comment thread or reply is created.

`webflow.onCommentCreated` starts when a design-review comment thread or reply is created.

## Example

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

export default automation("Comment created", () => {
  webflow.onCommentCreated({ 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.

## Output

Returns the comment, author, mentioned users, page, thread, breakpoint, URL, and resolution state. Each authenticated delivery starts an ordinary root context.
