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"
  }
}

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.

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"
  }
}