Skip to main content
PUT
/
mockup-comments
/
{id}
/
assign
Assign mockup comment
curl --request PUT \
  --url https://api.surefeedback.com/api/v1/mockup-comments/{id}/assign \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "user_id": "<string>",
  "priority": "<string>",
  "due_date": "<string>"
}
'
{
  "success": true,
  "message": "Comment assigned successfully",
  "data": {
    "id": "220e8400-e29b-41d4-a716-44665544000c",
    "assignee": {
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "email": "[email protected]"
    }
  }
}
Assigns a mockup comment to a project member. The current implementation restricts this to the project owner or a project admin.

Path parameters

id
string
required
UUID of the mockup comment.

Request body

user_id
string
required
UUID of the assignee.
priority
string
Assignment priority: LOW, MEDIUM, or HIGH.
due_date
string
Optional due date.
{
  "success": true,
  "message": "Comment assigned successfully",
  "data": {
    "id": "220e8400-e29b-41d4-a716-44665544000c",
    "assignee": {
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "email": "[email protected]"
    }
  }
}