Hi everyone,
I'm working on a Power Automate flow that needs to update hundreds of records in Dataverse. Initially, I used the "Apply to each" loop with the "Update a row" action, but as expected, this approach was quite slow due to the large number of requests.
To improve performance, I created a batch request manually. I used "Apply to each" to build the request body, stored it in variables, and then sent it using a pre-authenticated HTTP request to the Dataverse Web API. This method works, but it feels like a lot of effort for what seems like a common need -> bulk updates.
My question is:
Am I missing a simpler or more efficient way to do this in Power Automate?
Is there a built-in or easier approach to handle bulk operations in Dataverse that I'm not aware of?
Thanks in advance for your help!