I'm searching a way to obtain all files of a specific folder.
But I can't find sufficient informations in the official documentation
I think about something like this: (I assume also to set a custom header with the access_token)
https://api.box.com/2.0/search?query=*
This way doesn't work, and I think that the query doen't accept a regex...
Any idea?
PS: A real usecase will help to understand this question:
my folder:
folderOne:
|
|_file1.jpg
|
|_file2.doc
|
|_folder1
| |_file3.jpg
| |_folder2
|
|_file4.pdf
with the search request I expect to get only file1.jpg
, file2.doc
and file4.pdf
.