Hi! Am using a simple call:
```
client.files.listFolder(path: "", recursive: false, includeMediaInfo: false, includeDeleted: false).response { response, error in
if let listFolderResult = response {
print("These are the entries in the main folder:")
print(listFolderResult.entries)
}
else {
print("Error listing folder:")
print(error)
}
}
```
but it seems like even this doesn't work. I get the following message:
```
Optional([request-id 98201723db4f6b61cab0ca9ed2c3209b] Bad Input: Error in call to API function "files/list_folder": request body: could not decode input as JSON)
```
Any help would be appreciated. Thanks!