Can anyone advise the best way to synchronize files via Box API?
My app needs to download deep structure of folders for offline use and currently needs to recursively scan each folder for changes. Is there any way to identify whether anything changed in the tree branch within a single call? Modification time stamp, etag and size on top folder level do not change in many cases (e.g. when moving files from one sub-folder to another sub-folder).
Tracking of events seems to be an alternative (though quite complex), but I'm afraid it may not work in my case due to purging of event stream (my users may synchronize once per few months).