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

# Remove comment subscribers

> Unsubscribe users from a comment.

Removes one or more users from a comment's subscriber list.

## Request body

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

<ParamField body="user_ids" type="array" required>
  Array of user IDs to unsubscribe.
</ParamField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "message": "Subscribers removed successfully"
  }
  ```
</ResponseExample>
