Hey there,
I'm trying to create a folders for a special user using java SDK api,
but i get there error :
com.box.sdk.BoxAPIResponseException: The API returned an error code
[403 | j83udhfv6ay420fn] access_denied_insufficient_permissions - Access denied -
insufficient permission
// create Box connection
BoxConnection boxConnection = new BoxConnection();
BoxDeveloperEditionAPIConnection api = boxConnection.getAppUserConnection(boxUserId);
// get box user
BoxUser boxUser = new BoxUser(api, boxUserId);
BoxFolder parentFolder = new BoxFolder(api, "0");
Thanks for help.