Home
Find the answer to your question
How to list a Featured Plus item through the API?
Summary
You can use a Featured Plus to give your listing stand-out placement in category lists and search results, and what you need to do is just send <ListingEnhancement>Featured</ListingEnhancement> tag in you AddItem request.
Please note that the sellers must have a Feedback Rating of 10 or more to list a Featured Plus item .
Below is the Sample AddItem request that list a Featured Plus item.
<?xml version="1.0" encoding="utf-8"?>
<AddItemRequest xmlns="urn:ebay:apis:eBLBaseComponents">
<Version>473</Version>
<ErrorLanguage>en_US</ErrorLanguage>
<WarningLevel>High</WarningLevel>
<Item>
<BuyItNowPrice>10.0</BuyItNowPrice>
<Country>US</Country>
<Currency>USD</Currency>
<Description>NewSchema item description.</Description>
<ListingDuration>Days_5</ListingDuration>
<Location>San Jose, CA</Location>
<PaymentMethods>PaymentSeeDescription</PaymentMethods>
<PrimaryCategory>
<CategoryID>1463</CategoryID>
</PrimaryCategory>
<Quantity>1</Quantity>
<ReservePrice>5.0</ReservePrice>
<StartPrice>1.0</StartPrice>
<ShippingTermsInDescription>True</ShippingTermsInDescription>
<Title>Listing Feature Plus</Title>
<ListingEnhancement>Featured</ListingEnhancement>
<PictureDetails>
<PictureURL><![CDATA[http://i1.sandbox.ebayimg.com/03/i/00/01/98/8d_0.JPG]]></PictureURL>
<GalleryType><![CDATA[Featured]]></GalleryType>
</PictureDetails>
</Item>
<RequesterCredentials>
<eBayAuthToken>YOUR TOKEN</eBayAuthToken>
</RequesterCredentials>
</AddItemRequest>
Additional Resources