This endpoint allows the third party system to retrieve comprehensive details about a specific order from Keeta platform.
- https://open.mykeeta.com/api/openhttps://open.mykeeta.com/api/open/order/get
curl -i -X POST \
https://open.mykeeta.com/api/open/order/get \
-H 'Content-Type: application/json' \
-d '{
"orderViewId": 756823555555859,
"shopId": 466663
}'Successful returns order details.
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
Text description corresponding to the status code, explaining the operation result or error cause to users.
Example:"Success"
Response
{ "code": 0, "message": "Success", "data": { "orderInfo": { … } } }