0

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?

Brian Tompsett - 汤莱恩
  • 5,753
  • 72
  • 57
  • 129
Duncan
  • 9
  • 1

1 Answers1

0

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.

snert
  • 15
  • 6