Hi Team,
can any one please help me to get access in shared folder to extract the meta data like subfolder size and file count.
I was unable to locate the shared folder through api always it says, lookup not found:
Error: ApiError('e266db43b6334ae9bacaa86ee7c566b4', ListFolderError('path', LookupError('not_found', None)))
Below is my folder structure in dropbox:

trying with below code to get all of root folder but I am getting only App folder
#Code I am using to get all the folder
dbx = dropbox.Dropbox(access_token)
try:
folder = ''
response = dbx.files_list_folder(folder)
# If no AuthError is raised, it means the scope is working correctly
print("Scope is working correctly.")
print(response)
except dropbox.exceptions.AuthError as e:
print(f"AuthError: {e}")
as output I am receiving only one folder which is Apps folder
Output: entries=[FolderMetadata(id='id:CUbXpRMh8dwAAAAAAAAACg', name='Apps', parent_shared_folder_id=NOT_SET, path_display='/Apps', path_lower='/apps', preview_url=NOT_SET, property_groups=NOT_SET, shared_folder_id=NOT_SET, sharing_info=NOT_SET)], has_more=False)