Hello,
We have successfully create orders, modify them but we think there is a lack of information for the process flow or I didn't find it.
- Can we add more than one line item to the order with one call to the add line inte Order method?
To mark an order as paid, is enough to call the method POST /v3/merchants/{mId}/orders/{orderId}/payments with a tender id? We are developing an app in iOS that will allow the user to pay the orders in a payment gateway we are using for other bookings and then place an order for a restaurant which is using Clover.
I'm trying to add the payment with the following object but no results. What's the mininum data to add a payment to an order? Any example? { "tender:{ "id": "JPYC7GFTBRKCE" }, "amount": "107", "cashTendered": "107", "employee": { "id": "DWBZANYG5SAP0" }, "result": "OK", "taxAmount": "7" }
- Also I'm unable to add a Ordertype to an order. Can I do in the creation of the order or do I need first to create it and then update it? Any example of the Json to use for adding an Order Type.
Thanks!