Get Back Orderable Information
Version: 8.2
Developer tasks for using service method GetBackOrderableInformation.
GetBackOrderableInformation retrieves a list of products available for back 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.
RequestResponsevar provider = new CommerceInventoryServiceProvider(); var products = new List<CommerceInventoryProduct> { new CommerceInventoryProduct { ProductId = "p1", CatalogName = ProductCatalogName }, new CommerceInventoryProduct { ProductId = "p2", CatalogName = ProductCatalogName, VariantId = "1" } }; var request = new GetBackOrderableInformationRequest(string.Empty, products); var result = provider.GetBackOrderableInformation(request);