Skip to main content
DELETE
/
mockup-comments
/
{id}
/
subscribers
Remove mockup comment subscribers
curl --request DELETE \
  --url https://api.surefeedback.com/api/v1/mockup-comments/{id}/subscribers \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "user_ids": [
    {}
  ]
}
'
{
  "success": true,
  "message": "Subscribers removed successfully",
  "data": {
    "id": "220e8400-e29b-41d4-a716-44665544000c"
  }
}
Removes subscribers from a mockup comment.

Path parameters

id
string
required
UUID of the mockup comment.

Request body

user_ids
array
required
Array of user IDs to unsubscribe.
{
  "success": true,
  "message": "Subscribers removed successfully",
  "data": {
    "id": "220e8400-e29b-41d4-a716-44665544000c"
  }
}