# Store Status Update Notification Keeta pushes real-time notifications when a store's operational status changes, enabling immediate order availability updates based on status codes and business hours. 1102 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. Endpoint: POST storeStatusUpdateNotification Version: v.1.0.0 ## Request fields (application/json): - `shopId` (integer) Store ID Example: 466663 - `fromStatus` (integer) Previous store status Example: 4 - `toStatus` (integer) New store status Enum: 3, 4 ## Response 200 fields (application/json): - `code` (integer, required) A numeric status identifier indicating the result of the interface call, used to determine whether the operation executed successfully. - `message` (string, required) Text description corresponding to the status code, explaining the operation result or error cause to users. Example: "Success"