# 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.
**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.

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

  - `fromDeliveryRestStatus` (integer)
    Previous store's delivery businese status
    Example: 1

  - `toDeliveryRestStatus` (integer)
    New store's delivery businese status
    Enum: 1, 2

  - `fromPickupRestStatus` (integer)
    Previous store's pickup businese status
    Example: 1

  - `toPickupRestStatus` (integer)
    New store's pickup businese status
    Enum: 1, 2

## 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.
    Example: 0

  - `message` (string, required)
    Text description corresponding to the status code, explaining the operation result or error cause to users.
    Example: Success

