메인 콘텐츠로 건너뛰기
POST
/
annotation_queues
/
stats
어노테이션 큐 통계
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
    }
  ]
}

인증

Authorization
string
header
필수

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

본문

application/json

여러 annotation 큐의 통계 정보를 가져오기 위한 요청입니다.

project_id
string
필수
예시:

"entity/project"

queue_ids
string[]
필수

통계 정보를 가져올 큐 ID 목록입니다.

예시:
[
"550e8400-e29b-41d4-a716-446655440000",
"550e8400-e29b-41d4-a716-446655440001"
]

응답

성공 응답

여러 annotation 큐에 대한 통계 정보를 포함하는 응답입니다.

stats
AnnotationQueueStatsSchema · object[]
필수