eBay DiscountPriceInfoType Functional Scope
General overview of the feature
We need to add additional functionality for eBay DiscountPriceInfoType. Currently we have OriginalRetailPrice added in WAP but we will need to add the SoldOffeBay and SoldOneBay. For more details follow this link
Process flow - specifics
Discount Price Info is a drop down placed in item_account and account table where you should be able to select the relevant option

We need to add SoldOffeBay and SoldOneBay as additional options in the drop down so when the account is set up we can select the relevant option. We should follow the basic logic in WAP which is first we check item_account for selected value then we check account.
Please take into consideration SoldOffeBay and SoldOneBay are only available for eBay UK and DE, thus we have to check what will happen if we send SoldOffeBay and SoldOneBay for the others eBay.
Other - specifics
<DiscountPriceInfo>DiscountPriceInfoType
<MadeForOutletComparisonPrice>AmountType (double) </MadeForOutletComparisonPrice>
<MinimumAdvertisedPrice>AmountType (double) </MinimumAdvertisedPrice>
<MinimumAdvertisedPriceExposure>MinimumAdvertisedPriceExposureCodeType </MinimumAdvertisedPriceExposure>
<OriginalRetailPrice>AmountType (double) </OriginalRetailPrice>
<SoldOffeBay>boolean </SoldOffeBay>
<SoldOneBay>boolean </SoldOneBay>
</DiscountPriceInfo>
| Item.DiscountPriceInfo .SoldOffeBay | boolean | Conditional | Used by the eBay UK and eBay Germany (DE) sites, this flag indicates that the discount price (specified as StartPrice) is the price for which the seller offered the same (or similar) item for sale on a Web site or offline store other than eBay in the previous 30 days. The discount price is always in reference to the seller's own price for the item.
If this field is set to true
, eBay displays 'Was' in the UK and 'Ursprunglich' in Germany, next to the discounted price of the item. In the event both SoldOffeBay and SoldOneBay fields are set to true
, SoldOneBay takes precedence.
Default: false. | |||
---|---|---|---|
Item.DiscountPriceInfo | |||
.SoldOneBay | boolean | Conditional | Used by the eBay UK and eBay Germany (DE) sites, this flag indicates that the discount price (specified as StartPrice) is the price for which the seller offered the same (or similar) item for sale on eBay within the previous 30 days. The discount price is always in reference to the seller's own price for the item. |
If this field is set to true
, eBay displays 'Was' in the UK and 'Ursprunglich' in Germany, next to the discounted price of the item. In the event both SoldOffeBay and SoldOneBay fields are set to true
, SoldOneBay takes precedence.
Default: false. |
For more details please follow this link
Outstanding questions