Hello all.
We have built an integration to push Journal Transactions into Acumatica with the Rest API. Our transactions can have hundreds of line items, which would come over as Transaction Details.
We first tried to do this within a single request. But we get this error when trying to push transactions with more than 10 details:
```
pAcumatica] 414 Request-URI Too Long: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN""http://www.w3.org/TR/html4/strict.dtd">
<HTML><HEAD><TITLE>Request URL Too Long</TITLE>
<META HTTP-EQUIV="Content-Type" Content="text/html; charset=us-ascii"></HEAD>
<BODY><h2>Request URL Too Long</h2>
<hr><p>HTTP Error 414. The request URL is too long.</p>
</BODY></HTML>
```
We have since broken up the request into batches of 10. This also doesn’t work because the Journal Transaction will get rejected if the lines don’t balance, and the way we separate lines we can’t guarantee batches of a balanced amount.
I have to imagine something we’re missing with pushing transactions with large amounts of line items. Is there a way to bulk insert with the Record type?