メインコンテンツへスキップ
POST
/
annotation_queues
/
query
アノテーション キュー クエリ ストリーム
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>"
    }
  ]
}

承認

Authorization
string
header
必須

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

ボディ

application/json

プロジェクトのアノテーションキューをクエリするためのリクエスト。

project_id
string
必須
:

"entity/project"

name
string | null

キュー名によるフィルター(大文字小文字を区別しない部分一致)

:

"Error"

sort_by
SortBy · object[] | null

複数のフィールドでソート(例: created_at、updated_at、name)

limit
integer | null
:

10

offset
integer | null
:

0

レスポンス

成功時のレスポンス