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

# Resolve comment

> Mark a comment as resolved.

Updates a comment's status. To resolve a comment, send `RESOLVED` as the new status.

## Path parameters

<ParamField path="id" type="string" required>
  UUID of the comment to update.
</ParamField>

## Request body

<ParamField body="status" type="string" required>
  New status. Use `RESOLVED` to mark the comment as resolved.
</ParamField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "message": "Comment status updated successfully",
    "data": {
      "comment": {
        "id": "990e8400-e29b-41d4-a716-446655440004",
        "status": "RESOLVED",
        "resolved_at": "2026-03-02T14:00:00Z",
        "resolved_by": { "id": "...", "name": "Jane Smith" }
      }
    }
  }
  ```
</ResponseExample>
