Api Annotation Items Queue List List

GET/POST /api/annotation-items/queue/list/ Worker queue list view with filter options metadata. Same as /queue/ but includes filters_data in response for FE filter UI. Permission: No permission required (self-filtering to assignee=current_user) Features: - Everything from /queue/ (pagination, filtering, enrichment) - Plus: filters_data in response (FilterOptionsMixin) - Accepts filters via URL params OR POST body Response (paginated): { "count": 5, "next": "/api/annotation-items/queue/list/?page=2", "previous": null, "results": [...], "filters_data": {...} }

Authentication

AuthorizationBearer
JWT access token or Respan API key

Query parameters

pageintegerOptional
A page number within the paginated result set.
page_sizeintegerOptional
Number of results to return per page.

Response

countinteger
resultslist of objects
nextstring or nullformat: "uri"
previousstring or nullformat: "uri"
total_countinteger
current_filtersobject

Pydantic model for FilterParamDict. A dictionary that maps metric names to their filter parameters.

Each key is a metric name (str), and each value can be:

  • A single MetricFilterParamPydantic (one condition)
  • A List[MetricFilterParamPydantic] (multiple conditions for same metric)
  • A FilterBundlePydantic (nested filter bundle with connector)

Note: Uses extra=“allow” for dynamic metric name fields. The pydantic_extra annotation tells Pydantic what types to expect for extra fields, and generates typed additionalProperties in JSON Schema.

filters_dataobject