> ## 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 feedback comment to a team member.

Assign a comment to a team member using their user UUID or email address.

**Requires:** `write` permission

## Parameters

| Parameter | Type   | Required | Description                                       |
| --------- | ------ | -------- | ------------------------------------------------- |
| `id`      | string | ✓        | Comment UUID                                      |
| `user_id` | string |          | Assignee user UUID                                |
| `email`   | string |          | Assignee email address (alternative to `user_id`) |

Provide either `user_id` or `email`.

## Example

```json theme={null}
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "assign-comment",
    "arguments": {
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "email": "bob@example.com"
    }
  }
}
```

## Response

```json theme={null}
{
  "id": "550e8400-e29b-41d4-a716-446655440000",
  "task_key": "SSL-042",
  "assignee": {
    "id": "...",
    "name": "Bob Dev",
    "email": "bob@example.com"
  },
  "assigned_at": "2026-03-05T12:00:00Z"
}
```

## Example prompts

* *"Assign comment SSL-042 to [bob@example.com](mailto:bob@example.com)"*
* *"Assign the checkout bug to Bob"*
