Retrieves all collections for a given user.
Currently, only the favorites collection
is supported.
id,type,nameA comma-separated list of attributes to include in the response. This can be used to request fields that are not normally returned in a standard response.
Be aware that specifying this parameter will have the effect that none of the standard fields are returned in the response unless explicitly specified, instead only fields for the mini representation are returned, additional to the fields requested.
10001000The maximum number of items to return per page.
10000The offset of the item at which to begin the response.
Returns all collections for the given user
An unexpected client error.
curl -X GET https://api.box.com/2.0/collections \
-H 'Authorization: Bearer <ACCESS_TOKEN>'BoxCollection<BoxCollectionItem> collections = await client.CollectionsManager.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('Collection "{0}" has ID {1}'.format(collection.name, collection.id))client.collections.getAll()
.then(collections => {
/* collections -> { total_count: 1,
entries:
[ { type: 'collection',
id: '11111',
name: 'Favorites',
collection_type: 'favorites' } ],
limit: 100,
offset: 0 }
*/
});