Delete Annotation

Delete an Annotation from an item

Request
path Parameters
annotationId
required
string

Annotation id

Responses
204

No content

delete/annotations/{annotationId}
Request samples

is_deleted = item.annotations.delete(annotation_id='annotation_id')

# 
# Remove an annotation from item.
# 
# **Prerequisites**: You must have an item that has been annotated. You must have the role of an *owner* or
# *developer* or be assigned a task that includes that item as an *annotation manager* or *annotator*.
# 
# :param dtlpy.entities.annotation.Annotation annotation: Annotation object
# :param str annotation_id: The id of the annotation
# :param dtlpy.entities.filters.Filters filters: Filters entity or a dictionary containing filters parameters
# :return: True/False
# :rtype: bool
# 
#