Hi all,
I’m trying to retrieve the list of files uploaded by users with the upload button.
To do so, I need the folder id to filter files in it.
But I understood that files that are uploaded by users with the button, are placed in a “non-folder” area of media so I cannot retrieve any folder id to have this list
Any idea on how to retrieve this list of files?
Thanks
David
const filters = {
parentFolderId: “id of the folder”
};
mediaManager.listFiles(filters, null, null)
.then((myFiles) => {
etc etc…