Find the answer to your question
Advanced Search
Can I change local listing item to non-local listing?
Summary
RelistItem can be used to change a local listing item to an non-local listing. To make the change for a given item, you are required to:
1. Delete Item.ListingDetails.LocalListingDistance property with DeleteField
2. Specify the required item properties that apply to the new ListingType in your RelistItem request.
3. Set the BestOfferEnabled flag to false if you intend to change a local listing to a Chinese auction item
4. Define the ListingDuration to the value that applies to the intended listing item type.
Detailed Description
Below is the RelistItem API request that re-lists the item 250133172233 and change its Local listing type to Chinese auction type.
<?xml version="1.0" encoding="utf-8"?>
<RelistItemRequest xmlns="urn:ebay:apis:eBLBaseComponents">
<DetailLevel>ReturnAll</DetailLevel>
<ErrorLanguage>en_US</ErrorLanguage>
<WarningLevel>High</WarningLevel>
<Version>505</Version>
<Item>
<BuyItNowPrice>5000.0</BuyItNowPrice>
<ItemID>250133172233</ItemID>
<ListingType>Chinese</ListingType>
<ListingDuration>Days_3</ListingDuration>
<PaymentMethods>CashInPerson</PaymentMethods>
<PaymentMethods>PaymentSeeDescription</PaymentMethods>
<PaymentMethods>MOCC</PaymentMethods>
<PaymentMethods>PersonalCheck</PaymentMethods>
<PaymentMethods>LoanCheck</PaymentMethods>
<ShippingDetails/>
<ShipToLocations>None</ShipToLocations>
<Site>eBayMotors</Site>
<StartPrice>100.0</StartPrice>
<Title>2002 Audi 100</Title>
<UUID>20fb0d2f446f4d5f8bbb488622115e37</UUID>
<BuyerResponsibleForShipping>true</BuyerResponsibleForShipping>
<LimitedWarrantyEligible>false</LimitedWarrantyEligible>
<BestOfferEnabled>false</BestOfferEnabled>
</Item>
<RequesterCredentials>
<eBayAuthToken>YOUR TOKEN</eBayAuthToken>
</RequesterCredentials>
<DeletedField>Item.ListingDetails.LocalListingDistance</DeletedField>
</RelistItemRequest>
Additional Information