# Order Confirmation This endpoint allows the third party to inform the Keeta ordering application that an order has been accepted and food preparation will begin shortly. 1. - Developers must call this endpoint immediately upon receiving new order notifications from Keeta. - The Keeta platform will automatically cancel any order that remains unconfirmed after 5 minutes. 2. - The endpoint rejects requests under these conditions: - The order was already accepted through a Keeta POS terminal - The order status has already progressed beyond the initial state Endpoint: POST /order/confirm Version: v.1.0.0 ## Request fields (application/json): - `orderViewId` (integer, required) Unique identifier for orders on Keeta platform Example: 756823555555859 - `shopId` (integer, required) Unique identifier of the Keeta store Example: 466663 ## 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"