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

# Resolve comment thread

> Resolves or reopens a Webflow design-review comment thread.

`webflow.resolveCommentThread` changes the resolved state of a design-review comment thread.

## Example

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

export default automation("Resolve comment thread", () => {
  onDashboardRun({ title: "Resolve comment thread" })
  webflow.resolveCommentThread({
    siteId: "site-id",
    commentThreadId: "comment-thread-id",
    resolved: true,
  })
})
```

## 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.                              |
| `resolved`        | `boolean` | Yes      | `true` resolves the thread; `false` reopens it. |

## Output

Returns the updated `Webflow.CommentThread`, including its IDs, content, author, mentions, locale, breakpoint, timestamps, and `isResolved` state.
