Skip to main content
POST
/
mockup-comments
/
{id}
/
resolve
Resolve mockup comment
curl --request POST \
  --url https://api.surefeedback.com/api/v1/mockup-comments/{id}/resolve \
  --header 'X-API-Key: <api-key>'
{
  "success": true,
  "message": "Comment resolved successfully",
  "data": {
    "id": "220e8400-e29b-41d4-a716-44665544000c",
    "status": "RESOLVED",
    "is_resolved": true,
    "resolved_at": "2026-03-01T11:00:00Z"
  }
}
Marks a mockup comment as resolved.

Path parameters

id
string
required
UUID of the mockup comment.
{
  "success": true,
  "message": "Comment resolved successfully",
  "data": {
    "id": "220e8400-e29b-41d4-a716-44665544000c",
    "status": "RESOLVED",
    "is_resolved": true,
    "resolved_at": "2026-03-01T11:00:00Z"
  }
}