Hi all,
I need some clarification on the exact Dataverse Web API limits i have in my scenario. I have a logic app which processes around 1700 cases. For performance reasons i created a child logic app which does the processing. From the parted logic app I send 100 cases every 10 seconds to the child logic app. This child logic app does 7 requests/run to a Azure Function which handles a Dataverse request for us.
A parent logic app run finishes in 6 minutes. In my calculations that is 10.200 requests to dataverse in 6 minutes which comes to 1700 requests/min. If i believe the API Limit documentation this exceeds the limits of amounts of requests? However this runs just fine and no errors are thrown. A example of a Azure Function request to handle the Dataverse request is shown in the picture below. As said the child function does 7 requests like this in one run.
Can anyone clarify this situation?
Ex.
Best Regards,
Anthony
Thank you for the runthrough. Also for the great tip on batching.
Best Regards,
Anthony
Hi @Anthony_Dob,
The API limits documented here mention that the limits are on a per web server basis. If you are using a Sandbox or Production environment then you will likely have multiple load balanced web servers allocated for your environment. So in theory you should be able to perform at least 12k requests.
That said, I would consider redesigning your approach to process your records in a batch inside of your function, rather than making individual function calls per record. By doing so you will reduce the chance of being throttled by Dataverse, and you will reduce the costs of Azure functions (assuming you are using the consumption plan).
---
Please click Accept as Solution if my post answered your question. This will help others find solutions to similar questions. If you like my post and/or find it helpful, please consider giving it a Thumbs Up.
---
Please click Accept as Solution if my post answered your question. This will help others find solutions to similar questions. If you like my post and/or find it helpful, please consider giving it a Thumbs Up.
WarrenBelz
791
Most Valuable Professional
MS.Ragavendar
410
Super User 2025 Season 2
mmbr1606
275
Super User 2025 Season 2