v2

latestOpenAPI 3.0.3Apache-2.02026-08-07119359591.9 KB
Annotation Queues

Delete annotation queue records

Delete one or more records from an annotation queue by their IDs.

If one or more record IDs are not found or do not belong to the specified queue, they are silently ignored. A 204 response does not guarantee that all provided IDs were deleted.

Returns 404 if the annotation queue specified by annotation_queue_id is not found. Individual missing record IDs do not trigger a 404.

<Note>This endpoint is in beta, read more here.</Note>

delete/v2/annotation-queues/{annotation_queue_id}/records

Path parameters

annotation_queue_idstring required

A universally unique identifier (base64-encoded opaque string).

Example:RW50aXR5OjEyMzQ1

The unique annotation queue identifier (base64)

Request body

record_idsId[] required

The IDs of the annotation queue records to delete.

Example request

{
  "record_ids": [
    "RW50aXR5OjEyMzQ1"
  ]
}

Response

Annotation queue records successfully deleted