Esempio n. 1
0
        // 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, "");
        }
Esempio n. 2
0
        private void removeItem(string itemId, string SKU)
        {
            EndFixedPriceItemCall apiCall = new EndFixedPriceItemCall(context);

            apiCall.EndFixedPriceItem(itemId, EndReasonCodeType.OtherListingError, SKU);
        }