Skip to main content
DELETE
/
comments
/
{id}
/
unassign
Unassign comment
curl --request DELETE \
  --url https://api.surefeedback.com/api/v1/comments/{id}/unassign \
  --header 'X-API-Key: <api-key>'
{
  "success": true,
  "message": "Comment unassigned successfully",
  "data": {
    "comment": {
      "id": "990e8400-e29b-41d4-a716-446655440004",
      "assigned_to": null
    }
  }
}
Removes the current assignee from a comment.

Path parameters

id
string
required
UUID of the comment.
{
  "success": true,
  "message": "Comment unassigned successfully",
  "data": {
    "comment": {
      "id": "990e8400-e29b-41d4-a716-446655440004",
      "assigned_to": null
    }
  }
}