In the V1 api you have the option to make a call as a team member that will:
<param name="asTeamMember">Specify the member_id of the user that the app wants to act on.</param>
This is the old V1 ListRevisionAsync:
Task<IEnumerable<MetaData>> RevisionsAsync(string path, int rev_limit = 10, string locale = null, string asTeamMember = null, CancellationToken cancellationToken = default(CancellationToken));
In the new dropbox you can perform an action AsMember.
What is the difference between performing an api call such as FilesRoutes.ListRevisionsAsync using just the path or using a team client with as a AsMember call and then doing the api call?
Client.ListRevisionAsync(path)
Client.AsMember(asTeamMember).ListRevisionAsync(path)
What is the difference between these two calls exactly? How does calling it from a different user matter?
Thanks