Developer tasks for using service method
GetVisitorOrder.
GetVisitorOrder is used to retrieve order details for a specific
order.
At your visual studio solution setup:
-
Reference the Sitecore.Commerce.Connect.CommerceServer and Sitecore.Commerce.dll.
-
Pick the class in your solution where want to use this service method.
-
Paste in the code below to use the service method.
GetVisitorOrder var orderService = new OrderServiceProvider();
// need a valid order id for the first param
var visitorOrderRequest = new GetVisitorOrderRequest( "Order_7777" , "Me" , "MyShop" );
var result = orderService.GetVisitorOrder(visitorOrderRequest);