Is there a way to see, via the API, who edited the file? I'm trying to disrupt Google Docs, and that's a core feature of their revision history.
The sharing_info.modified_by property of FileMetadata, e.g., as returned by /2/files/get_metadata or /2/files/list_folder[/continue] has the ID of the user that last modified a file if the file is in a shared folder.
This is also available on each object returned by /2/files/list_revisions.
Does that satisfy your use case?
Excellent, thanks Greg! Missed that while skimming the calls.