> ## Documentation Index
> Fetch the complete documentation index at: https://developer.surefeedback.com/llms.txt
> Use this file to discover all available pages before exploring further.

# update-comment-status

> Change the status of a feedback comment.

Update the status of a comment to `open`, `in_progress`, `resolved`, or `closed`.

**Requires:** `write` permission

## Parameters

| Parameter | Type   | Required | Description                                             |
| --------- | ------ | -------- | ------------------------------------------------------- |
| `id`      | string | ✓        | Comment UUID                                            |
| `status`  | string | ✓        | New status: `open`, `in_progress`, `resolved`, `closed` |

## Example

```json theme={null}
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "update-comment-status",
    "arguments": {
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "status": "resolved"
    }
  }
}
```

## Response

```json theme={null}
{
  "id": "550e8400-e29b-41d4-a716-446655440000",
  "task_key": "SSL-042",
  "status": "RESOLVED",
  "updated_at": "2026-03-05T12:00:00Z"
}
```

## Example prompts

* *"Mark comment SSL-042 as resolved"*
* *"Set the checkout bug to in progress"*
