Help us improve these docs. Take our quick survey.
curl --request POST \
--url https://api.example.com/objs/query \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"project_id": "<string>",
"filter": {
"latest_only": true,
"object_ids": [
"my_favorite_model"
]
},
"limit": 100,
"offset": 0,
"sort_by": [
{
"direction": "desc",
"field": "created_at"
}
],
"metadata_only": false,
"include_storage_size": false,
"include_tags_and_aliases": false
}
'{
"objs": [
{
"project_id": "<string>",
"object_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"digest": "<string>",
"version_index": 123,
"is_latest": 123,
"kind": "<string>",
"base_object_class": "<string>",
"val": "<unknown>",
"deleted_at": "2023-11-07T05:31:56Z",
"leaf_object_class": "<string>",
"wb_user_id": "<string>",
"size_bytes": 123,
"tags": [
"<string>"
],
"aliases": [
"<string>"
]
}
]
}curl --request POST \
--url https://api.example.com/objs/query \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"project_id": "<string>",
"filter": {
"latest_only": true,
"object_ids": [
"my_favorite_model"
]
},
"limit": 100,
"offset": 0,
"sort_by": [
{
"direction": "desc",
"field": "created_at"
}
],
"metadata_only": false,
"include_storage_size": false,
"include_tags_and_aliases": false
}
'{
"objs": [
{
"project_id": "<string>",
"object_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"digest": "<string>",
"version_index": 123,
"is_latest": 123,
"kind": "<string>",
"base_object_class": "<string>",
"val": "<unknown>",
"deleted_at": "2023-11-07T05:31:56Z",
"leaf_object_class": "<string>",
"wb_user_id": "<string>",
"size_bytes": 123,
"tags": [
"<string>"
],
"aliases": [
"<string>"
]
}
]
}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
"user/project"
クエリのフィルター条件。ObjectVersionFilter を参照してください
Show child attributes
{
"latest_only": true,
"object_ids": ["my_favorite_model"]
}返す結果の最大数
100
返す前にスキップする結果数
0
クエリ結果の並べ替え条件。現在サポートしているのは 'object_id' と 'created_at' のみです。
Show child attributes
[
{
"direction": "desc",
"field": "created_at"
}
]true の場合、val 列はデータベースから読み取られず、空になります。その他のフィールドはすべて返されます。
true の場合、size_bytes 列が返されます。
true の場合、タグとエイリアスを取得してレスポンスに含めます。
正常なレスポンス
Show child attributes