I’m using the following call to retrieve events from Box.
EnterpriseEventsRequest request = new EnterpriseEventsRequest()
.types(eventTypes)
.limit(10)
.after(null)
.before(null)
eventTypes is an array of BoxEvent.EventType. For all other events, DOWNLOAD, LOGIN, etc. the call is correctly returning only event types that match. When I use ITEM_CREATE or ITEM_UPDATE, the filter is basically getting ignored and it’s returning random events. I’m using the 4.11.1 version. Any ideas of what could be wrong?