Help us improve these docs. Take our quick survey.
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
}
]
}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-john-wbdocs-2044-rename-serverless-products.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.
プロジェクトの ID
"my_entity/my_project"
クエリ対象の表のダイジェスト
"aonareimsvtl13apimtalpa4435rpmgnaemrpgmarltarstaorsnte134avrims"
クエリに適用するオプションのフィルター。詳細は TableRowFilter を参照してください。
Show child attributes
{
"row_digests": [
"aonareimsvtl13apimtalpa4435rpmgnaemrpgmarltarstaorsnte134avrims",
"aonareimsvtl13apimtalpa4435rpmgnaemrpgmarltarstaorsnte134avrims"
]
}
返す行の最大数
100
行の返却を開始する前にスキップする行数
10
並べ替えに使用するフィールドの一覧。辞書の値にアクセスするには、フィールドをドット区切りで指定できます。並べ替えを指定しない場合は、表のデフォルトの順序(挿入順)が使用されます。
Show child attributes
[
{ "field": "col_a.prop_b", "order": "desc" }
]
正常なレスポンス
Show child attributes