メインコンテンツへスキップ
GET
/
annotation_queues
/
{queue_id}
アノテーション キューを読み取る
curl --request GET \
  --url https://api.example.com/annotation_queues/{queue_id} \
  --header 'Authorization: Basic <encoded-value>'
{
  "queue": {
    "id": "<string>",
    "project_id": "<string>",
    "name": "<string>",
    "description": "<string>",
    "scorer_refs": [
      "<string>"
    ],
    "created_at": "2023-11-07T05:31:56Z",
    "created_by": "<string>",
    "updated_at": "2023-11-07T05:31:56Z",
    "deleted_at": "2023-11-07T05:31:56Z"
  }
}

承認

Authorization
string
header
必須

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

パスパラメータ

queue_id
string
必須

クエリパラメータ

project_id
string
必須

レスポンス

成功レスポンス

アノテーションキューを取得した際のレスポンス。

queue
AnnotationQueueSchema · object
必須

アノテーションキューのレスポンス用スキーマ。