I'm developing a shipping site where user inputs origin zip code and destination zip code. The input passes through an API which gets all the available Shippers for that route. The user selects one from that. Now I want to create an Infusionsoft order for it. I looked into https://developer.infusionsoft.com/docs/read/Order_Service#placeOrder but could not find a way to make a product as my shippers differ with routes and also their costs changes. Can any one help me on how will I create an Order for it?
Since you need more flexibility than placeOrder
, you'll need to use the InvoiceService. The general process of creating an order will look like the following:
Of course, you may need to add, remove, or modify steps to fit your use case.