Developer tasks for using service method
GetStockLocation.
GetStockLocation is used to retrieve a single inventory
catalog.
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.
var service = new CommerceInventoryServiceProvider();
var request = new GetStockLocationRequest { Location = "location name", ProductCatalogName = "product catalog name" };
var resutl = service.GetStockLocation(request);