We are writing an application and need to check what events were in Dropbox after our app last checked the system.
We are using V2 API of Dropbox.
If you want to get the event log, and continuing checking it over time, for a Dropbox Business team from C#, you should use the GetEvents and GetEventsContinue methods in the official Dropbox API v2 .NET SDK, or directly via /2/team_log/get_events[/continue] if you can't use the SDK.
Per the message in the documentation however, note that these are currently only available in preview, and are not yet meant for production use. If you need to use this in production, you should instead use /1/team/log/get_events for now. That unfortunately is not implemented in the official .NET SDK though