I have a requirement to be able to inject relatively fast 3000+ records to a custom entity.
Doing it the classic way via API will throttle me at 600 calls per 5 minutes which is unacceptable speed.
I could do the Batch request, but for some reason in my instance this does not seem to work. Can somebody share working example - for instance which creates 2 entries to account entity?
I have the following batch:
--batch_WKQS9Yui9r--
Content-Type: application/http
Content-Transfer-Encoding:binary
POST xxx.crm4.dynamics.com/.../accounts HTTP/1.1
Content-Type: application/json;type=entry
{"name":"test5"}
POST xxx.crm4.dynamics.com/.../accounts HTTP/1.1
Content-Type: application/json;type=entry
{"name":"test6"}
--batch_WKQS9Yui9r--
In the response I am getting just one line:
--batchresponse_d7a92030-f185-4f8a-beea-9b82333805ee--
No records are created. Any Ideas?