curl --request POST \
--url https://api.example.com/annotation_queues/stats \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"project_id": "<string>",
"queue_ids": [
"<string>"
]
}
'{
"stats": [
{
"queue_id": "<string>",
"total_items": 123,
"completed_items": 123
}
]
}여러 어노테이션 큐의 통계를 조회합니다.
curl --request POST \
--url https://api.example.com/annotation_queues/stats \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"project_id": "<string>",
"queue_ids": [
"<string>"
]
}
'{
"stats": [
{
"queue_id": "<string>",
"total_items": 123,
"completed_items": 123
}
]
}Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
성공 응답
여러 annotation 큐에 대한 통계 정보를 포함하는 응답입니다.
표시 하위 속성