Please provide a streamlined endpoint that can be used to quickly add orders to zoho books. For any eCommerce company that wants to quickly automate all revenue account this is a critical need.
Right now in the API it's possible to add revenue items, but it's cumbersome. The process would need to be something like:
Look up to see if the contact exists, if so get the id, if not add one, then get that id.
Next add an invoice.
Next add a payment and associate it to the invoice.
As you can see there is a bunch of "handling" that every 3rd party needs to do.
It would be so much simpler to interface with the Api if there was a single call, where all relevant information was submitted in a single post.
-> Customer info (with logic if it doesn't exist, create new)
-> Order information (order items, prices)
-> Payment information
Then have the zoho api construct the proper and necessary records to account for the order.