指定したユーザーのすべてのコレクションを取得します。
現在サポートされているのは、favorites
コレクションのみです。
id,type,name
レスポンスに含める属性のコンマ区切りリス ト。このパラメータを使用すると、標準のレスポンスには通常含まれないフィールドをリクエストできます。
このパラメータを指定すると、明示的に指定しない限り標準フィールドはレスポンスに含まれず、リクエストしたフィールドのほかには、Mini版の表示のフィールドしか返されないことに注意してください。
1000
1000
返す項目の1ページあたりの最大数。
1000
0
レスポンスが開始される項目のオフセット。
オフセットパラメータ値が10,000を超 えているクエリは拒否され、400レスポンスが返されます。
指定したユーザーのすべてのコレクションを返します
予期しないクライアントエラー。
curl -i -X GET "https://api.box.com/2.0/collections" \
-H "authorization: Bearer <ACCESS_TOKEN>"
await client.collections.getCollections();
client.collections.get_collections()
await client.Collections.GetCollectionsAsync();
Iterable<BoxCollection.Info> collections = BoxCollection.getAllCollections(api);
for (BoxCollection.Info collectionInfo : collections) {
// Do something with the collection.
}
collections = client.collections()
for collection in collections:
print(f'Collection "{collection.name}" has ID {collection.id}')
BoxCollection<BoxCollectionItem> collections = await client.CollectionsManager.GetCollectionsAsync();
client.collections.getAll()
.then(collections => {
/* collections -> { total_count: 1,
entries:
[ { type: 'collection',
id: '11111',
name: 'Favorites',
collection_type: 'favorites' } ],
limit: 100,
offset: 0 }
*/
});
{
"entries": [
{
"collection_type": "favorites",
"id": "11446498",
"name": "Favorites",
"type": "collection"
}
],
"limit": 1000,
"offset": 2000,
"order": [
{
"by": "type",
"direction": "ASC"
}
],
"total_count": 5000
}