Hi!
I'm trying to use the sharing/list_file_members in order to fetch the last time a shared file have been seen by its member.
According to the API, the response for each member should include the field time_last_seen, in case the member have opened the file.
However, it does not matter if members have opened it or not, the field is not being returned at all in the response.
Am I missing anything?
This is the API I'm doing:
curl -X POST "https://api.dropboxapi.com/2/sharing/list_file_members" --header "Content-Type: application/json" \
--header "Authorization: Bearer <AUTH_TOKEN>" --header "Dropbox-API-Select-User: <USER_ID>" --data "{\"file\": \"<FILE_ID\"}"