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

# Assign mockup comment

> Assign a mockup comment to a project member.

Assigns a mockup comment to a project member. The current implementation restricts this to the project owner or a project admin.

## Path parameters

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

## Request body

<ParamField body="user_id" type="string" required>
  UUID of the assignee.
</ParamField>

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

<ParamField body="due_date" type="string">
  Optional due date.
</ParamField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "message": "Comment assigned successfully",
    "data": {
      "id": "220e8400-e29b-41d4-a716-44665544000c",
      "assignee": {
        "id": "550e8400-e29b-41d4-a716-446655440000",
        "email": "jane@example.com"
      }
    }
  }
  ```
</ResponseExample>
