Update Stock Location
Version: 8.2
Developer tasks for using service method UpdateStockLocation
.
UpdateStockLocation
is used to edit an 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.
RequestResponsevar service = new CommerceInventoryServiceProvider(); var location = new CommerceStockLocation { InventoryCatalogName = "location name", InventoryCatalogDescription = "New Description" }; var request = new UpdateStockLocationRequest(location); var response = service.UpdateStockLocation(request);