Skip to main content
DELETE
https://dashboard.laburen.com
/
api
/
annotations
/
tags
/
{id}
curl --location --request DELETE 'https://dashboard.laburen.com/api/annotations/tags/clxxxxxxxxxxxxxxxxx' \
--header 'Authorization: Bearer <API_KEY>'
{
  "success": true
}
This endpoint deletes a specific annotation tag by ID. It supports:
  • Verifying tag ownership (tags can only be deleted by the organization that owns them)
  • Automatic validation that the tag exists before deletion

Path

id
string
required
The unique identifier (CUID) of the annotation tag to delete.

Response

success
boolean
Indicates whether the deletion was successful. Always true on successful deletion.

Error Responses

Status CodeTypeDescription
401UNAUTHORIZEDMissing or invalid authentication session.
404NOT_FOUNDThe tag with the specified ID does not exist or does not belong to the organization.
curl --location --request DELETE 'https://dashboard.laburen.com/api/annotations/tags/clxxxxxxxxxxxxxxxxx' \
--header 'Authorization: Bearer <API_KEY>'
{
  "success": true
}