Visitor Cancel Order

Developer tasks for using service method VisitorCancelOrder.

VisitorCancelOrder is used to cancel an order placed by the visitor. The decision on whether the order is cancelled or not lies in business logic in the external commerce system. Typically an order cannot be cancelled ones it shop owner has started fulfilling/processing it.

At your visual studio solution setup:

  1. Reference the Sitecore.Commerce.Connect.CommerceServer and Sitecore.Commerce.dll.
  2. Pick the class in your solution where want to use this service method.
  3. Paste in the code below to use the service method.
    var orderService = new OrderServiceProvider();
    
    // need a valid order id for the first param
    var visitorCancelOrder = new VisitorCancelOrderRequest("Order_7777", "Me", "MyShop");
    
    var result = orderService.VisitorCancelOrder(visitorCancelOrder);