Home
Find the answer to your question
How can I use the promotional shipping feature when using the API?
Summary
Specify <PromotionalShippingDiscount>true</PromotionalShippingDiscount> in the Item.ShippingDetails container of the AddItem request to mark an item eligible for the promotional shipping discount.
<?xml version="1.0" encoding="utf-8"?>
<AddItemRequest xmlns="urn:ebay:apis:eBLBaseComponents">
<ErrorLanguage>en_US</ErrorLanguage>
<WarningLevel>High</WarningLevel>
<Version>511</Version>
<Item>
<BuyItNowPrice>10.0</BuyItNowPrice>
<Country>US</Country>
<Currency>USD</Currency>
<Description>Testing</Description>
<ListingDuration>Days_7</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>
<Title>Testing</Title>
<ShippingDetails>
<PromotionalShippingDiscount>true</PromotionalShippingDiscount>
...
</ShippingDetails>
...
<Item>
</AddItemRequest>