Skip to main content
Question

COLLAB_ events don't come from the Box

  • May 22, 2025
  • 2 replies
  • 25 views

Forum|alt.badge.img

Hi everyone,

 

I need to monitor all events including any access changes bounded to folders under some admin account. I created an application with app user and registered it.
According documentation access can be changed via shared link creation or via operations with collaborators. But for collaborators changes I can catch only events bounded with app user not for all users who could be collaborators for my folders.

I tried to use EventLog, but it didn't help me.

Does any way exist for monitoring access list of my folders?


I'm using Box Java SDK for catching any events.

EventStream stream = new EventStream(connection);
String userId = BoxUser.getCurrentUser(connection).getID();
stream.addListener(new BoxListener());
stream.start();

 

public class BoxListener implements EventListener {
----------------------
public void onEvent(BoxEvent event) {
BoxResource resource = event.getSourceInfo().getResource();
switch (event.getType()) {
------------------------------------
}

 

2 replies

Forum|alt.badge.img

 This might be application settings issue. Is your application set to Enterprise for the Application Access setting?

 

BOX_f9b7m10h13r7k2ihcmki9i2wugiatldo.png


Forum|alt.badge.img

Yes, it's Enterprise