Skip to main content
POST
/
comments
/
subscribers
/
remove
Remove comment subscribers
curl --request POST \
  --url https://api.surefeedback.com/api/v1/comments/subscribers/remove \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "comment_id": "<string>",
  "user_ids": [
    {}
  ]
}
'
{
  "success": true,
  "message": "Subscribers removed successfully"
}
Removes one or more users from a comment’s subscriber list.

Request body

comment_id
string
required
UUID of the comment.
user_ids
array
required
Array of user IDs to unsubscribe.
{
  "success": true,
  "message": "Subscribers removed successfully"
}