Search Stock Information

Version:

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.

    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);
If you have suggestions for improving this article, let us know!