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

> Change a comment's priority.

Updates the priority for an existing comment.

## Path parameters

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

## Request body

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

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "message": "Comment priority updated successfully",
    "data": {
      "priority": "HIGH"
    }
  }
  ```
</ResponseExample>
