This API provides comprehensive store management capabilities for Keeta platform integration.
- Store Status Update Notification
Keeta Store Management API (v.1.0.0)
https://open.mykeeta.com/api/open/
Updated business hour
https://open.mykeeta.com/api/open/businessHourUpdateNotification
{ "shopId": 466663, "businessHourOfTheWeek": { "thu": [ … ], "tue": [ … ], "wed": [ … ], "sat": [ … ], "fri": [ … ], "mon": [ … ], "sun": [ … ] }, "specialBusinessHour": [ { … } ] }
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. |
{ "code": 0, "message": "Success" }
Request
Keeta pushes real-time notifications when a store's operational status changes, enabling immediate order availability updates based on status codes and business hours.
Event ID: 1102
Notes: A store accepts orders only when its status is 3 (Operating) and the current time falls within configured business hours; if the status is 4 (Suspended), orders are blocked immediately regardless of business hours.
New store status
Enum Value | Description |
---|---|
3 | Indicates the store is actively conducting business. Keeta will only permit order submissions when both conditions are satisfied, the status equals 3 and the current time falls within published operating hours. |
4 | represents a complete operational pause, automatically disabling all order placement capabilities regardless of scheduled business hours. |
https://open.mykeeta.com/api/open/storeStatusUpdateNotification
{ "shopId": 466663, "fromStatus": 4, "toStatus": 3 }
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. |
{ "code": 0, "message": "Success" }