thebenman
thebenman

Reputation: 1621

Can multiple people edit the same excel file using Microsoft Graph Excel APIs

I would like to have a solution where a single administrator account would make calls on behalf of the signed in users on a web app to perform CRUD operation on a single shared excel file stored in the administrators OneDrive.

This is how the flow will look like.

Now suppose there are multiple users logged in to the web app and make requests. How will the Graph API respond to this scenario?

Does Microsoft Graph API support concurrent requests to edit.

Upvotes: 0

Views: 240

Answers (1)

Joy Wang
Joy Wang

Reputation: 42123

Microsoft Graph throttling limits the number of concurrent calls to a service to prevent overuse of resources.

When a throttling threshold is exceeded, Microsoft Graph limits any further requests from that client for a period of time. When throttling occurs, Microsoft Graph returns HTTP status code 429 (Too many requests), and the requests fail.

For more details, refer to Microsoft Graph throttling guidance.

Upvotes: 1

Related Questions