This endpoint allows the third party to inform the Keeta ordering application that an order has been accepted and food preparation will begin shortly.
Notes:
- Timing Requirements
- Developers must call this endpoint immediately upon receiving new order notifications from Keeta.
- The Keeta platform will automatically cancel any order that remains unconfirmed after 5 minutes.
- State Management
- The endpoint rejects requests under these conditions:
- The order was already accepted through a Keeta POS terminal - The order status has already progressed beyond the initial state
- https://open.mykeeta.com/api/openhttps://open.mykeeta.com/api/open/order/confirm
curl -i -X POST \
https://open.mykeeta.com/api/open/order/confirm \
-H 'Content-Type: application/json' \
-d '{
"orderViewId": 756823555555859,
"shopId": 466663
}'Request executed successfully
A numeric status identifier indicating the result of the interface call, used to determine whether the operation executed successfully.
| Enum Value | Description |
|---|---|
| 0 | The request was executed successfully. |
| Non-zero value | The request execution failed. Specific error details can be viewed in the message field. |
Example:0
Response
{ "code": 0, "message": "Success" }