Get an annotation queue object by its ID.
This includes the annotation queue’s annotation configs, which define the structure of annotations that can be created in this queue.
This endpoint does not include queue records or annotation progress. To manage records in a queue, use the Annotation Queue Items endpoints.
Most Arize AI endpoints require authentication. For those endpoints that require authentication, include your API key in the request header using the format
The unique identifier of the annotation queue A universally unique identifier
An annotation queue object
The unique identifier for the annotation queue
"aq_abc123"
The name of the annotation queue
"Quality Review Queue"
The space id the annotation queue belongs to
"spc_xyz789"
The timestamp for when the annotation queue was created
"2024-01-15T10:30:00Z"
The timestamp for when the annotation queue was last updated
"2024-01-20T14:45:00Z"
The instructions for the annotation queue
"Review each response for accuracy and helpfulness"
The annotation configs associated with this queue
[
{
"id": "ac_001",
"name": "accuracy",
"type": "continuous",
"space_id": "spc_xyz789",
"minimum_score": 0,
"maximum_score": 10,
"optimization_direction": "maximize",
"created_at": "2024-01-10T08:00:00Z"
},
{
"id": "ac_002",
"name": "sentiment",
"type": "categorical",
"space_id": "spc_xyz789",
"values": [
{ "label": "positive", "score": 1 },
{ "label": "neutral", "score": 0 },
{ "label": "negative", "score": -1 }
],
"optimization_direction": "maximize",
"created_at": "2024-01-10T08:00:00Z"
}
]