API document says:
recursive Boolean If true, the list folder operation will be applied recursively to all subfolders and the response will contain contents of all subfolders. The default for this field is False.
I am trying to list a folder with recursive=True, but the response does not return the contents of the sub-folders.
Here is the folder structure:
/Team Folder
/Team Folder/file.txt
/Team Folder/sub-folder
/Team Folder/sub-folder/file.txt
When I call list_folder on '/Team Folder' with recursive set to True, I do not get the content of 'sub-folder' in response. The response only includes sub-folder not its contents.