curl --request POST \
--url https://api.example.com/annotation_queues/query \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"project_id": "<string>",
"name": "Error",
"sort_by": [
{
"field": "<string>",
"direction": "asc"
}
],
"limit": 10,
"offset": 0
}
'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Query annotation queues for a project (streaming NDJSON response).
curl --request POST \
--url https://api.example.com/annotation_queues/query \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"project_id": "<string>",
"name": "Error",
"sort_by": [
{
"field": "<string>",
"direction": "asc"
}
],
"limit": 10,
"offset": 0
}
'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Request to query annotation queues for a project.
"entity/project"
Filter by queue name (case-insensitive partial match)
"Error"
Sort by multiple fields (e.g., created_at, updated_at, name)
Show child attributes
10
0
Successful Response
Was this page helpful?