Get Visitor Order

Developer tasks for using service method GetVisitorOrder.

GetVisitorOrder is used to retrieve order details for a specific order.

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 provider = new
            CommerceInventoryServiceProvider();var products = new
            List<CommerceInventoryProduct>                    {
                                    new
            CommerceInventoryProduct {                         ProductId =
            "p1", CatalogName = ProductCatalogName },                         new
            CommerceInventoryProduct {                   ProductId = "p2",
            CatalogName = ProductCatalogName, VariantId = "1" },                         new
            CommerceInventoryProduct {                         ProductId =
            "p3", CatalogName = ProductCatalogName }                   
            };      var request
            = new GetStockInformationRequest(string.Empty, products);       var result =
              provider.GetStockInformation(request);                                      
            

  4.