Search Stock Information

Version: 8.2

SearchStockInformation is used to search for a SKU and associated inventory catalogs.

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.

    RequestResponse
    var 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);

Do you have some feedback for us?

If you have suggestions for improving this article,