Hi everyone.
We have app for food ordering in restaurants. Our app support TAB orders, so customer can order multiple time and pay on the end. What we want to do is to authorize order amount every time user update order. For example
- Customer start tab with ordering beer 5$
- We create order on clover
- We want to authorize this 5$
- Customer order burger 10$
- We update clover order
- We want to authorize additional 10$
- Customer want to close tab
- We use authorized sum and charge order
Is this possible to do with REST API?
Currently, we create order on clover using
/v3/merchants/{mId}/atomic_order/orders
and charge order immediately after creation using
/v1/orders/{orderId}/pay
What we are interested is incremental amount authorization