Search Stock Information
Version: 8.2
SearchStockInformation is used to search for a SKU and associated inventory catalogs.
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 request = new SearchStockInformationRequest(ProductCatalogName) { SearchClause = @"([SkuId] like N'newSku%')", SearchOptions = new CommerceInventorySearchOptions { RecordsToRetrieve = recordsToRetrieve, StartingRecord = startingRecord, SortDescending = false, SortProperty = InventorySkusDataSetSchema.ProductId } }; var result = provider.SearchStockInformation(request);