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
The ID of the annotation to delete (CUID format).
Response
Indicates whether the deletion was successful. Always true on successful deletion.
Error Responses
| Status Code | Type | Description |
|---|
| 401 | UNAUTHORIZED | Missing or invalid authentication session, or annotation does not belong to your organization. |
| 404 | NOT_FOUND | Annotation with the specified ID does not exist. |
curl --location --request DELETE 'https://dashboard.laburen.com/api/annotations/clxxxxxxxxxxxxxxxxx' \
--header 'Authorization: Bearer <API_KEY>'