Hello, I faced with a problem: when I create order via API v3 with delivery type, how should I know that it's a delivery order? Probably I have to set delivery time somewhere? Or put it only into the note?
For different types of orders (eg. takeout, delivery, dine in, etc), we recommend identifying using Order Type
.
When querying orders via GET /v3/merchants/{mId}/orders
, the response will have an orderType
field:
"orderType": {
"id": "2AG7324DT0BAJ"
}
Which you can identify the id via GET /v3/merchants/{mId}/order_types/{orderTypeId}
1 Person is following this question.