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

# Create comment reply

> Adds a reply to a Webflow design-review comment thread.

`webflow.createCommentReply` adds a text reply to a design-review comment thread.

## Example

```ts automations/webflow-create-comment-reply.automation.ts theme={null}
import { automation, onDashboardRun } from "automate.ax"
import { webflow } from "automate.ax/webflow"

export default automation("Create comment reply", () => {
  onDashboardRun({ title: "Create comment reply" })
  webflow.createCommentReply({
    siteId: "site-id",
    commentThreadId: "comment-thread-id",
    content: "The requested change is ready for review.",
  })
})
```

## Inputs

Every input accepts a compatible signal. This action requires the `comments:write` OAuth scope.

| Field             | Type     | Required | Description                                 |
| ----------------- | -------- | -------- | ------------------------------------------- |
| `siteId`          | `string` | Yes      | Webflow site ID.                            |
| `commentThreadId` | `string` | Yes      | Comment-thread ID.                          |
| `content`         | `string` | Yes      | Reply text from 1 through 2,040 characters. |

Mention a Webflow user by including `[[userId]]` in `content`. Creating a reply fires Webflow's `comment_created` webhook.

## Output

| Field            | Type                                            | Description                     |
| ---------------- | ----------------------------------------------- | ------------------------------- |
| `id`             | `string`                                        | Reply ID.                       |
| `commentId`      | `string`                                        | Parent comment ID.              |
| `siteId`         | `string`                                        | Site ID.                        |
| `pageId`         | `string`                                        | Page ID.                        |
| `breakpoint`     | `string`                                        | Design breakpoint.              |
| `content`        | `string`                                        | Reply content.                  |
| `isResolved`     | `boolean`                                       | Whether the thread is resolved. |
| `author`         | `{ id: string; email: string; name: string }`   | Reply author.                   |
| `createdOn`      | `string`                                        | Creation timestamp.             |
| `lastUpdated`    | `string`                                        | Last-update timestamp.          |
| `localeId`       | `string`                                        | Locale ID, when present.        |
| `mentionedUsers` | `{ id: string; email: string; name: string }[]` | Mentioned users, when present.  |
