Skip to main content
DELETE
https://dashboard.laburen.com
/
api
/
annotations
/
{id}
curl --location --request DELETE 'https://dashboard.laburen.com/api/annotations/clxxxxxxxxxxxxxxxxx' \
--header 'Authorization: Bearer <API_KEY>'
{
  "success": true
}
This endpoint deletes an annotation. It supports:
  • Deleting annotations by ID
  • Verifying annotation ownership before deletion
  • Returning a success confirmation
Authentication is required. You must provide a valid session with an organization ID, and the annotation must belong to your organization.

Path

id
string
required
The ID of the annotation to delete (CUID format).

Response

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

Error Responses

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