A release of White Server version 1.71.14 and White Server Agent version 2.10.2.9 was issued on March 5, 2025.

  1. We have supported the implementation of a new licensing scheme. Starting from version r_k 7.25.04 and WSA 2.10.2.9, the presence of a technical license for the R-Keeper module 2 XML interface for WSA software is no longer mandatory. For the full functionality of the product, a standard license for the White Server Interface is sufficient.
  2. We have enabled the transmission of ClientId in the CreateOrder request, which will allow for the transfer of guest data for loyalty programs operating through Far Cards. An example of the request:
    Example Request:

    "customer": {
    
            "name": "Allen Nader",
    
            "phone": "+7 911-111-1111",
    
            "loyalty": {
    
              "clientId": -00000,
    
              "interfaceCode": 1
    
            }
    
          }
    CODE
  3. We have added the PrepayId parameter in the RemovePrepayOrder request, which allows for the deletion of previously made prepayments within an order.
    Example Request:

    {
    
        "taskType": "RemovePrepayOrder",
    
        "params": {
    
            "sync": {
    
                "objectId": "********",
    
                "timeout": 120
    
            },
    
            "orderGuid": "8fcf1323-a26c-4afc-a8a4-7023372b4ebb",
    
            "prepayId": "0cb956ac-6c1c-4c58-89b8-a409d8a6efcd"
    
        }
    
    }
    CODE
  4. Through the StartParkOrder and EndParkOrder methods, we have supported the ability to transmit the Parking status for orders sent to KDS PRO.
  5. The GetModifierStopList method has been added to the GetStopList request. This feature operates with version r_k7 no lower than 7.07.00.381.
    Example Request:

    "modifierStopList": {
    
                "dishes": [
    
                    {
    
                        "id": "1000065",
    
                        "name": "Sour-cream",
    
                        "type": "ingredient"
    
                    }
    
                ]
    
            }
    CODE