# Order Acceptance Notification This webhook serves to notify the developer's system when an order's status changes to 'Order Confirmed' on the Keeta platform. 1002 Endpoint: POST orderAcceptanceNotification Version: v.1.0.0 ## Request fields (application/json): - `orderViewId` (integer) Unique identifier for orders on Keeta platform Example: 756823555555859 - `shopId` (integer) Unique identifier of the Keeta store Example: 466663 - `status` (integer) Order status code, always 30 for this event Example: 30 - `opTime` (integer) Time when the event occurred, specified as milliseconds since Jan 1, 1970 (Unix epoch) Example: 1751448108144 ## 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"