Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 944 Bytes

recent-items.md

File metadata and controls

25 lines (17 loc) · 944 Bytes

Recent Items

Recent Items returns information about files that have been accessed by a user not long ago. It keeps track of items that were accessed either in the last 90 days or the last 1000 items accessed (both conditions must be met).

Get a User's Recent Items

Get a list of all recent items the user has by calling GetRecentItemsAsync(int limit = 100, string marker = null, IEnumerable<string> fields = null, bool autoPaginate = false).

BoxCollectionMarkerBasedV2<BoxRecentItem> recentItems = await client.RecentItemsManager
    .GetRecentItemsAsync(limit: 500);