Get Visitor Orders
Version: 8.2
Developer tasks for using service method GetVisitorOrders
.
GetVisitorOrders
is used to get the order history of the given visitor.
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.
RequestResponsevar orderService = new OrderServiceProvider (); var visitorOrdersRequest = new GetVisitorOrdersRequest ( "Me" , "MyShop" ); var result = orderService.GetVisitorOrders(visitorOrdersRequest);