Delete Stock Information
Version: 8.2
Developer tasks for using service method DeleteStockInformation
.
DeleteStockInformation
is used to delete a SKU permanently.
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 commerceStockInfo = new CommerceStockInformation { ProductId = "newSku", VariantId = "newSku1", ProductCatalogName = ProductCatalogName }; var request = new DeleteStockInformationRequest(string.Empty, commerceStockInfo); var result = provider.DeleteStockInformation(request);