This endpoint allows merchant to notify the Keeta platform that an order has been fully prepared and is ready for rider pickup.
Notes:
- Keeta strongly recommends that developers integrate this API to significantly enhance delivery efficiency.
- Calling this endpoint automatically updates the order status to 'Order Ready' in Keeta's system.
- This API does not support duplicate calls.
- It is crucial to call this API only after meal preparation is fully completed to avoid disrupting the delivery workflow. Premature or mistaken invocations could lead to delivery inefficiencies and negatively affect the overall customer experience.
- https://open.mykeeta.com/api/openhttps://open.mykeeta.com/api/open/order/prepare
curl -i -X POST \
https://open.mykeeta.com/api/open/order/prepare \
-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" }