Hi All,
I am trying to get the Access Stats (e.g. list of users/timestamps who last accessed the file) for each files within a folder, but I cannot find the appropriate API call.
Basically I am trying to do something like this:
items = client.folder(folder_id=***target_folder_id***).get_items(limit=100, offset=0)
for i in items:
if (i._item_type == 'file'):
try:
client.file(file_id=k.object_id).***some_api_call_here***
except:
print('No access history for: ' + file['name'])I tried using get_events() or metadata().get but it doesnt return what I expected.
Is there any way to do this?
Thanks!
