表のクエリ
curl --request POST \
--url https://api.example.com/table/query \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"project_id": "<string>",
"digest": "<string>",
"filter": {
"row_digests": [
"aonareimsvtl13apimtalpa4435rpmgnaemrpgmarltarstaorsnte134avrims",
"aonareimsvtl13apimtalpa4435rpmgnaemrpgmarltarstaorsnte134avrims"
]
},
"limit": 100,
"offset": 10,
"sort_by": [
{
"field": "col_a.prop_b",
"order": "desc"
}
]
}
'{
"rows": [
{
"digest": "<string>",
"val": "<unknown>",
"original_index": 123
}
]
}POST
/
table
/
query
表のクエリ
curl --request POST \
--url https://api.example.com/table/query \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"project_id": "<string>",
"digest": "<string>",
"filter": {
"row_digests": [
"aonareimsvtl13apimtalpa4435rpmgnaemrpgmarltarstaorsnte134avrims",
"aonareimsvtl13apimtalpa4435rpmgnaemrpgmarltarstaorsnte134avrims"
]
},
"limit": 100,
"offset": 10,
"sort_by": [
{
"field": "col_a.prop_b",
"order": "desc"
}
]
}
'{
"rows": [
{
"digest": "<string>",
"val": "<unknown>",
"original_index": 123
}
]
}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
プロジェクトの ID
例:
"my_entity/my_project"
クエリ対象の表のダイジェスト
例:
"aonareimsvtl13apimtalpa4435rpmgnaemrpgmarltarstaorsnte134avrims"
クエリに適用するオプションのフィルター。詳細は TableRowFilter を参照してください。
Show child attributes
Show child attributes
例:
{
"row_digests": [
"aonareimsvtl13apimtalpa4435rpmgnaemrpgmarltarstaorsnte134avrims",
"aonareimsvtl13apimtalpa4435rpmgnaemrpgmarltarstaorsnte134avrims"
]
}返す行の最大数
例:
100
行の返却を開始する前にスキップする行数
例:
10
並べ替えに使用するフィールドの一覧。辞書の値にアクセスするには、フィールドをドット区切りで指定できます。並べ替えを指定しない場合は、表のデフォルトの順序(挿入順)が使用されます。
Show child attributes
Show child attributes
例:
[
{ "field": "col_a.prop_b", "order": "desc" }
]レスポンス
正常なレスポンス
Show child attributes
Show child attributes
⌘I