Skip to main content
POST
/
boards
/
comments
/
{id}
/
labels
/
{labelId}
/
detach
Detach label from board comment
curl --request POST \
  --url https://api.surefeedback.com/api/v1/boards/comments/{id}/labels/{labelId}/detach \
  --header 'X-API-Key: <api-key>'
{
  "success": true,
  "data": {
    "message": "Label detached successfully"
  }
}
Detaches a single label from a board comment.

Path parameters

id
string
required
UUID of the comment.
labelId
string
required
UUID of the label to detach.
{
  "success": true,
  "data": {
    "message": "Label detached successfully"
  }
}