Skip to main content
PUT
/
comments
/
{id}
/
priority
Update comment priority
curl --request PUT \
  --url https://api.surefeedback.com/api/v1/comments/{id}/priority \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "priority": "<string>"
}
'
{
  "success": true,
  "message": "Comment priority updated successfully",
  "data": {
    "priority": "HIGH"
  }
}
Updates the priority for an existing comment.

Path parameters

id
string
required
UUID of the comment.

Request body

priority
string
required
New priority: LOW, MEDIUM, HIGH, or URGENT.
{
  "success": true,
  "message": "Comment priority updated successfully",
  "data": {
    "priority": "HIGH"
  }
}