Hi,
I want to list all files and folders inside a folder, including its subfolder. i.e., recursively.
https://api.box.com/2.0/folders/:folder_id/items
The above method lists files and folders inside current folders. How can I check recursively for files?
https://developer.box.com/guides/search/filtering/
curl -i -X GET "https://api.box.com/2.0/search?query=sales&ancestor_folder_ids=45235463,73445321" \
-H "Authorization: Bearer <ACCESS_TOKEN>"
The above search method works recursively. It searches for all files and folders for a given folder ID. It looks under the entire folder subtree.
Can we do the same with the list method? List all files and folders inside the given folder (files and folders inside the subfolder as well).
