Gags Helpful | Level 6

Comments

  • @"Greg-DB", We are seeing the error "invalid_select_admin" from the API "GetCurrentAccountAsync" for many team members.
  • Thank-you @"Здравко" . We have resolved the issue by using RootNamespaceId for our Customer. @"Greg-DB" , In order to test my changes in our QA environment, I would need Dropbox Business using Team Space configuration. How do I convert my existing Dropbox Business from Team Folder configuration to Team Space configuration…
  • Hello @"Здравко" Thank-you for answering. As I understand, I should set RootNameSpace everywhere in my Dropbox API calls in my scenario as in the code snippet below. Dropbox.Api.Users.FullAccount acc = await clientadmin.Users.GetCurrentAccountAsync();string rootnamespace = "";if (acc != null && acc.RootInfo != null &&…
  • Hello @"Greg-DB" Thank you for the reply !!! We used the new Dropbox API - UploadSessionStartBatchAsync and this helped in reducing the "too_many_requests" errors. We tested 2.2 TB data sample containing 427,002 files for migration using our custom app. Last time we faced 26,000 failures which has been reduced to 1,753 in…
  • Thank-you @"Greg-DB" I will try to incorporate your suggestions in my code logic. I would use UploadSessionStartBatchAsync to start multiple upload sessions in one call. Can I use it to start max-allowed 1000 upload sessions or is that an ill-advised decision. Do I need to start with lesser upload sessions - say 500…
  • Hello @"Greg-DB" Upload speeds are not major concern as of now but failures are. We did a 2 TB migration using our custom tool and encountered "too_many_requests" failure as the end stages of the migration. Thousands of files reported such failures which won't be acceptable to users. We upload many files in parallel but…
  • Thanks Greg, This new fields helped us get the correct value. Gagan