Hello,
I am working on developing an application using "Box-Node-SDK` and I am using JWT authentication. In my code, I initialize the SDK client by giving user-ids of managed users and am able to access their all files and folder successfully. The account has around 15 users.
Some of the users in account are are having less documents (few 100s) so less API calls are required to get list of all files and folders whereas some are having large volume (100K+) so more API calls are required.
If I run my application for only one user at a time, the application completes the lookup very quickly. But if I start lookup for all all users simultaneously, I am experiencing that application is taking more time to complete.
I am suspecting the API limits and backoff implemented in SDK are causing the delay which is fine but would like to understand how Box treats this requests - per user or per service account?