Reputation: 11
Trying to export folders inside Box account - including files in each folder. Need a list of all files with destination URLs. Has anyone done this before? Thanks!
Upvotes: 1
Views: 789
Reputation: 1214
There is currently no API that would directly give you all the files or folders within a Box user's account in one API call. But you can get all files and folders belonging to a user in multiple API calls.
You would need to recursively call the Get Folder's Item API to get this data. The process would be:
Upvotes: 1