Find the answer to your question
Advanced Search Product -Select Product- Trading API Shopping API Merchandising API Large Merchant Services Client Alerts API Feedback API Open eBay Apps Finding API Product Services Sandbox Others MIP Media API Notification API Identity API Charity API Taxonomy API Catalog API Recommendation API Compliance API Logistics API Finances API(Alpha) Negotiation API Listing API Sell Feed API Marketing Ads API Account API Inventory API Fulfillment API Marketing Promotion API Analytics API Metadata API Offer API Marketplace Insights API Deal API Marketing API Feed API Browse API Order API Analytics API Cancellation API Case Management API Inquiry API Return API
Category -Select- Getting Started Sample Code Troubleshooting HowTo's / Best Practices No Value
Language -Select- C# Flex Java JavaScript PHP VB.NET VB6
Format -Select- All XML SOAP JSON Name Value N/A
SDK -Select- .NET Java JavaScript Flax/Flash Mobile - iOS None
Sort by Default Summary New Description Date Updated
Sort order Descending Ascending
Search
Published: October 30 2012, 6:43:00 AM Updated: November 28 2020, 10:42:30 PM
How to show unit price details using AddItem family of call in German site.
Use the unit type and unit quantity item specifics. The unit price will then be displayed to buyers on the search results pages and the item page. You should use the unit price display only with FixedPriceItem listing type and you won’t be able to display a unit price for auction-style listings .
From October, when you list your item using the fixed price format in certain categories, you’ll be able to:
• Enter the selling price, as normal, e.g. EUR 10
• Use the item specific for the relevant unit, e.g. kg
• Use the item specific for the number of units, e.g. 10
For more information on this please refer to the seller update page here: http://sellerupdate.ebay.co.uk/autumn2012/unit-prices
To list an item in ebay.de with unit price in the viewItem page, use <ItemSpecifics> container and include the unit type and quantity details using the <NameValueList> container as shown below:
< ItemSpecifics > .. <NameValueList > <Name > Anzahl der Einheiten</ Name > <Value > 10</ Value > </NameValueList > <NameValueList > <Name > Maßeinheit</ Name > <Value > kg</ Value > </NameValueList > ..</ ItemSpecifics >
Below is a sample AddFixedPriceItem request that lists items in DE site with unit price details showing in the viewItem page.
Sample request for listing item with unit price
<? xml version = "1.0 " encoding = "utf-8 "?> < AddFixedPriceItemRequest xmlns = "urn:ebay:apis:eBLBaseComponents ">
<ErrorLanguage > en_US</ ErrorLanguage > <Item > <Site > Germany</ Site > <Country > DE</ Country > <Currency > EUR</ Currency > <Title > DTS testitem. Please Ignore. ** Do not Buy/Bid **</ Title > <Description > Testitem description comes here....</ Description > <ConditionID > 1000</ ConditionID > <ListingDuration > Days_3</ ListingDuration > <ListingType > FixedPriceItem</ ListingType > <Location > DE</ Location > <StartPrice currencyID = "EUR "> 12.0</ StartPrice > <PaymentMethods > PayPal</ PaymentMethods > <PayPalEmailAddress > testdev@paypal.com</ PayPalEmailAddress > <PrimaryCategory > <CategoryID > 126191</ CategoryID > </PrimaryCategory > <Quantity > 2</ Quantity > <DispatchTimeMax > 3</ DispatchTimeMax > <ShippingDetails > <PaymentInstructions > Please check below... this is not a real item. This listing is just for testing purpose. Please don't pay/return.</ PaymentInstructions > <ShippingServiceOptions > <ShippingService > DE_SonstigeDomestic</ ShippingService > <ShippingServiceCost currencyID = "EUR "> 2.99</ ShippingServiceCost > <ShippingServiceAdditionalCost currencyID = "EUR "> 2.99</ ShippingServiceAdditionalCost > <ShippingServicePriority > 1</ ShippingServicePriority > </ShippingServiceOptions > <ShippingType > Flat</ ShippingType > </ShippingDetails > <ShipToLocations > DE</ ShipToLocations > <PictureDetails > <GalleryType > Gallery</ GalleryType > <GalleryURL > http://i.ebayimg.com/00/s/NzY4WDEwMjQ=/$(KGrHqJ,!hQFBrh)LDeHBQjnZ08dYg~~60_1.JPG?set_id=8800005007</ GalleryURL > <PhotoDisplay > None</ PhotoDisplay > <PictureURL > http://i.ebayimg.com/00/s/NzY4WDEwMjQ=/$(KGrHqJ,!hQFBrh)LDeHBQjnZ08dYg~~60_1.JPG?set_id=8800005007</ PictureURL > <PictureSource > EPS</ PictureSource > </PictureDetails > <ItemSpecifics > <NameValueList > <Name > Art</ Name > <Value > Color</ Value > </NameValueList > <NameValueList > <Name > Typ</ Name > <Value > Interior paint</ Value > </NameValueList > < NameValueList > <Name > Anzahl der Einheiten</ Name > <Value > 10</Value> </NameValueList > <NameValueList > <Name > Maßeinheit</Name> <Value > kg</Value> </NameValueList > </ItemSpecifics > <ReturnPolicy > <ReturnsAcceptedOption > ReturnsAccepted</ReturnsAcceptedOption > <ReturnsAccepted > Verbraucher haben das Recht, den Artikel unter den angegebenen Bedingungen zurückzugeben.</ReturnsAccepted > <Description > Return policy description comes here...</Description > </ReturnPolicy > </Item > <RequesterCredentials > <eBayAuthToken > ABC...123</eBayAuthToken> </RequesterCredentials > </ AddFixedPriceItemRequest >
How well did this answer your question? Answers others found helpful