// http://developer.ebay.com/devzone/xml/docs/reference/ebay/EndFixedPriceItem.html public void EndFixedPriceItem(string itemid, EndReasonCodeType reason) { var call = new EndFixedPriceItemCall(api); call.EndFixedPriceItem(itemid, reason, ""); }
private void removeItem(string itemId, string SKU) { EndFixedPriceItemCall apiCall = new EndFixedPriceItemCall(context); apiCall.EndFixedPriceItem(itemId, EndReasonCodeType.OtherListingError, SKU); }