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

# Update comment subscribers

> Replace the subscriber list for a comment.

Replaces the current subscriber list for a comment with the provided users.

## Request body

<ParamField body="comment_id" type="string" required>
  UUID of the comment.
</ParamField>

<ParamField body="user_ids" type="array" required>
  Complete replacement list of user IDs.
</ParamField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "message": "Subscribers updated successfully",
    "data": {
      "subscribers": [
        {
          "id": "550e8400-e29b-41d4-a716-446655440000",
          "email": "jane@example.com"
        },
        {
          "id": "550e8400-e29b-41d4-a716-446655440111",
          "email": "bob@example.com"
        }
      ],
      "count": 2
    }
  }
  ```
</ResponseExample>
