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

> Assign a comment to a team member.

Assigns a comment to a specific organization member. The assignee will receive a notification.

## Path parameters

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

## Request body

<ParamField body="user_id" type="string" required>
  UUID of the user to assign the comment to. Must be a member of the organization.
</ParamField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "message": "Comment assigned successfully",
    "data": {
      "comment": {
        "id": "990e8400-e29b-41d4-a716-446655440004",
        "assigned_to": {
          "id": "550e8400-e29b-41d4-a716-446655440000",
          "name": "Jane Smith"
        }
      }
    }
  }
  ```
</ResponseExample>
