Adding multiple Entries under Order Entry Sales Order Transactions

117 views Asked by At

I came to a issue where I want to add multiple entries under a sales order transaction using the Sage Intacct developer API. Is it possible to modify your API to insert multiple entries under Sales order transaction on Sage Intacct?

1

There are 1 answers

0
snert On

It already allows you to add multiple lines. See here https://developer.intacct.com/api/order-entry/order-entry-transactions/#create-order-entry-transaction-legacy

There is an array of sotransitem records. If you're doing this via C# there is a legacy method in the SDK called OrderEntryTransactionCreate and in there is a Lines list which is a List<OrderEntryTransactionLineCreate>. You can add as many as you like.