1. Commerce Fundamentals

Purge Deleted Items

Version:

Developer tasks for using service method PurgeDeletedItems.

PurgeDeletedItems is used to delete a SKU from the system after it has been removed from any 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 PurgeDeletedItemsRequest { PurgeBeforeDate = new DateTime(2014, 01, 01) };
    var result = provider.PurgeDeletedItems(request);
If you have suggestions for improving this article, let us know!