0

I have 500 records which I need to update in D365FO via API. Microsoft suggested that bulk operations are not applicable via ODATA in D365FO currently.

Can I get some help here How can I update all the records via API at one go.

Currently, I am looping all my records to be updated one at a time which is ok for 500 records but as my data grows it would be time-consuming.

Any suggestions about how I can bulk update?

Mani
  • 19
  • 1
  • 5

2 Answers2

0

You can use ExecuteMultiple class to send the bulk requests to the server.

This article explain the usage of ExecuteMultiple and its limitations.

Hamza Ali
  • 380
  • 5
  • 21
0

Talking about Dynamics 365 for Finance and Operations, you may use Data Management Framework (DMF) API. It's about file Import / Export. File format could be CSV, XML, or Excel. JSON is available only through XSLT transformation. So, use CSV or XML.

Import sequence

Export sequence

Please find details here: