Iam_MK87
Iam_MK87

Reputation: 37

Microsoft Graph API Reports - throttling

As per the information provided by Microsoft here, the throttling limit for Reports service of Microsoft Graph API, per app, per tenant is 14 requests in 10 minutes.

But from my application, I make 5 requests simultaneously (using multi-threading) and I am getting the TenantThrottleThresholdExceeded exception.

I am wondering why would I get the throttling exception for just 5 requests? Anybody else is facing this?

Please help.

Upvotes: 0

Views: 727

Answers (1)

baywet
baywet

Reputation: 5382

Outlook APIs have a limit of 4 concurrent requests. This has an impact on reporting when asking reports for Outlook objects. Make sure you don't send your requests in parallel, or reduce parallelization to 4 and you shouldn't get throttled anymore

Upvotes: 1

Related Questions