Developers Program

Is VerifyAddItem ignoring SuperSize Fee?

Published: September 04 2006, 3:34:00 PMยทUpdated: July 26 2022, 4:59:57 PM

Products

Question

Question: For a sample listing, VerifyAddItem gives a ListingFee of $0.75, while AddItem returns $1.50. The only difference in between calls is that the VerifyAddItem uses made-up EPS image URLs as below: <PictureDetails> <PhotoDisplay>SuperSize</PhotoDisplay> <PictureURL>http://i14.ebayimg.com/02/i/08/1c/17/28_12.JPG?set_id=100D</PictureURL> <PictureURL>http://i1.ebayimg.com/01/i/08/21/19/cb_12.JPG?set_id=100D</PictureURL>

Answer

Answer:

Detail Description

You can use VerifyAddItem to test/retrieve SuperSize Fee. For any EPS image, VerifyAddItem returns the same amount of PhotoDisplayFee as AddItem does for a given site, as long as the image is functioning. If the picture is broken, the PhotoDisplayFee is not returned in either VerifyAddItem or AddItem response, and this can be verified by sending the same test EPS image in AddItem on Sandbox environment. Following EPS image URL can be used to test SuperSize picture functionality.

<?xml version="1.0" encoding="utf-8"?>
<VerifyAddItemRequest xmlns="urn:ebay:apis:eBLBaseComponents">
<RequesterCredentials>
<eBayAuthToken>TOKEN</eBayAuthToken>
</RequesterCredentials>
<Item>
..
<PictureDetails>
<PhotoDisplay>SuperSize</PhotoDisplay>
<PictureURL>http://i14.ebayimg.com/02/i/08/1c/17/28_12.JPG?set_id=100D</PictureURL>
<PictureURL>http://i1.ebayimg.com/01/i/08/21/19/cb_12.JPG?set_id=100D</PictureURL>
</PictureDetails>
..
</Item>
<DetailLevel>ReturnAll</DetailLevel>
</VerifyAddItemRequest>

How well did this answer your question?