Skip to main content
Opik Documentation

Search documentation

Type to search this documentation.

Search annotation queue items

POST/v1/private/annotation-queues/{id}/items/searchSearch annotation queue items

Returns queue membership metadata — how each item got into the queue — for the given item ids. A lookup rather than a listing: the caller renders the items table from the traces or threads API with its own sort and filters, so it asks for exactly the ids it is displaying. Ids that are not in the queue are omitted.

Parameters

idstring · uuidpathrequired

Request body

application/json
objectAnnotationQueueItemIds_Public
idsarray of string · uuidrequired

maxItems 1000 · minItems 1 · uniqueItems true

Show child attributes

maxItems 1000 · minItems 1 · uniqueItems true

Example request
{
  "ids": [
    "00000000-0000-0000-0000-000000000000"
  ]
}

Responses

200Annotation queue itemsapplication/json
objectAnnotationQueueItems_Public
contentarray of object
Show child attributes
Show array items
idstring · uuid
sourcestring

one of "manual", "automated"

Example response
{
  "content": [
    {
      "id": "00000000-0000-0000-0000-000000000000",
      "source": "automated"
    }
  ]
}
404Not Foundapplication/json
objectErrorMessage_Public
codeinteger · int32
detailsstring
messagestring
Example response
{
  "code": 0,
  "details": "string",
  "message": "string"
}
Documentation menu