> ## 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 mockup comment

> Update a mockup comment.

Updates a mockup comment. The current implementation only allows the comment author to edit the comment.

## Path parameters

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

## Request body

<ParamField body="content" type="string">
  Updated comment text.
</ParamField>

<ParamField body="description" type="string">
  Optional extended description.
</ParamField>

<ParamField body="status" type="string">
  Updated status: `OPEN`, `IN_PROGRESS`, or `RESOLVED`.
</ParamField>

<ParamField body="priority" type="string">
  Updated priority: `LOW`, `MEDIUM`, or `HIGH`.
</ParamField>

<ParamField body="mentions" type="array">
  Array of mentioned user IDs.
</ParamField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "message": "Comment updated successfully",
    "data": {
      "id": "220e8400-e29b-41d4-a716-44665544000c",
      "content": "Updated: Use the darker green from the design system.",
      "status": "IN_PROGRESS",
      "priority": "HIGH"
    }
  }
  ```
</ResponseExample>
