curl --request POST \
--url https://api.example.com/annotation_queues \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"project_id": "<string>",
"name": "<string>",
"scorer_refs": [
"<string>"
],
"description": "",
"wb_user_id": "<string>"
}
'{
"id": "<string>"
}Create a new annotation queue.
curl --request POST \
--url https://api.example.com/annotation_queues \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"project_id": "<string>",
"name": "<string>",
"scorer_refs": [
"<string>"
],
"description": "",
"wb_user_id": "<string>"
}
'{
"id": "<string>"
}Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Request to create a new annotation queue.
"entity/project"
"Error Review Queue"
[
"weave:///entity/project/scorer/error_severity:abc123",
"weave:///entity/project/scorer/resolution_quality:def456"
]"Review calls with exceptions"
Do not set directly. Server will automatically populate this field.
Successful Response
Response from creating an annotation queue.
Was this page helpful?