アノテーションキューの更新
curl --request PUT \
--url https://api.example.com/annotation_queues/{queue_id} \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"project_id": "<string>",
"name": "Updated Queue Name",
"description": "Updated description",
"scorer_refs": [
"weave:///entity/project/scorer/error_severity:abc123",
"weave:///entity/project/scorer/resolution_quality:def456"
]
}
'{
"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"
}
}アノテーションキューの更新
アノテーションキューのメタデータ(name、description、scorer_refs)を更新します。
PUT
/
annotation_queues
/
{queue_id}
アノテーションキューの更新
curl --request PUT \
--url https://api.example.com/annotation_queues/{queue_id} \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"project_id": "<string>",
"name": "Updated Queue Name",
"description": "Updated description",
"scorer_refs": [
"weave:///entity/project/scorer/error_severity:abc123",
"weave:///entity/project/scorer/resolution_quality:def456"
]
}
'{
"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"
}
}Documentation Index
Fetch the complete documentation index at: https://wb-21fd5541-dbrian-docs-2514-bedrock-agents.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
承認
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
パスパラメータ
ボディ
application/json
アノテーションキューを更新するためのリクエスト本文(queue_id はパスから取得します)。
project_id を除くすべてのフィールドは任意で、指定されたフィールドのみ更新されます。
レスポンス
正常なレスポンス
アノテーションキューの更新に対するレスポンス。
アノテーションキューのレスポンス用スキーマ。
Show child attributes
Show child attributes
⌘I