Skip to main content
Published: February 27 2012, 5:47:00 PMUpdated: September 04 2022, 11:40:13 PM

Detailed Description  

 You can use GetMyeBaySelling api to retrieve the list of the eBay removed items showing in your My eBay Unsold view:

Image

 

  When removing an item, eBay adds a note that marked as 'eBay note' to the item in question as showing above. As a result, you need to make sure to specify the IncludeNotes flag in your request.

<?xml version="1.0" encoding="utf-8"?>
<GetMyeBaySellingRequest xmlns="urn:ebay:apis:eBLBaseComponents">
  <Version>743</Version>
  <RequesterCredentials>
    <eBayAuthToken>xxxx</eBayAuthToken>
  </RequesterCredentials>
  <UnsoldList>
    <DurationInDays>60</DurationInDays>
    <IncludeNotes>true</IncludeNotes>
    <Pagination>
      <EntriesPerPage>100</EntriesPerPage>
      <PageNumber>1</PageNumber>
    </Pagination>
    <Sort>EndTime</Sort>
  </UnsoldList>
</GetMyeBaySellingRequest> 


  Yon can identify the eBay removed items by checking both eBayNotes and ItemPolicyViolation tags in GetMyeBaySelling response.
  Here is the sample GetMyeBaySelling response which shows the eBay removed item displaying in the above screen shot.

<?xml version="1.0" encoding="utf-8"?>
<GetMyeBaySellingResponse xmlns="urn:ebay:apis:eBLBaseComponents">
  <Timestamp>2012-02-27T17:53:21.852Z</Timestamp>
  <Ack>Success</Ack>
  <Version>761</Version>
  <Build>E761_CORE_BUNDLED_14442511_R1</Build>
  <UnsoldList>
    <ItemArray>
      
    ....
     
        <Item>
        <BuyItNowPrice currencyID="AUD">39.99</BuyItNowPrice>
        <ItemID>150748035733</ItemID>
        <ListingDetails>
          <ConvertedBuyItNowPrice currencyID="USD">43.21</ConvertedBuyItNowPrice>
          <StartTime>2012-01-30T12:09:36.000Z</StartTime>
          <EndTime>2012-01-30T13:59:10.000Z</EndTime>
          <ViewItemURL>http://www.ebay.com/itm/Testitem-Revision-check-listing-/150748035733</ViewItemURL>
          <ViewItemURLForNaturalSearch>http://cgi.ebay.com/Testitem-Revision-check-listing?item=150748035733&amp;category=63853&amp;cmd=ViewItem</ViewItemURLForNaturalSearch>
        </ListingDetails>
        <ListingType>FixedPriceItem</ListingType>
        <Quantity>4</Quantity>
        <SellingStatus>
          <ConvertedCurrentPrice currencyID="USD">43.21</ConvertedCurrentPrice>
          <CurrentPrice currencyID="AUD">39.99</CurrentPrice>
          <AdminEnded>true</AdminEnded>
        </SellingStatus>
        <ShippingDetails>
          <ShippingServiceOptions>
            <ShippingServiceCost currencyID="AUD">9.5</ShippingServiceCost>
          </ShippingServiceOptions>
          <ShippingType>Flat</ShippingType>
        </ShippingDetails>
        <Title>Testitem. Revision check listing.</Title>
        <eBayNotes>eBay Note: This listing has been cancelled due to a violation of our Duplicate listings policy. See "My Messages" for more details.
          &lt;!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"&gt;&lt;tr class="Note1"&gt;
&lt;td colspan=""&gt;&lt;img src="http://pics.ebaystatic.com/aw/pics/spacer.gif" width="5" height="0" alt=""&gt;&lt;/td&gt;
&lt;/tr&gt;</eBayNotes>
        <QuantityAvailable>4</QuantityAvailable>
        <SKU>DTS-30012012</SKU>
       ....

        <ItemPolicyViolation>
          <PolicyText>This listing has been canceled due to listing violation.See "My Messages" for more details.</PolicyText>
        </ItemPolicyViolation>
        <Variations />
      </Item>
      ....
    </ItemArray>
    <PaginationResult>
      <TotalNumberOfPages>22</TotalNumberOfPages>
      <TotalNumberOfEntries>2166</TotalNumberOfEntries>
    </PaginationResult>
  </UnsoldList>
</GetMyeBaySellingResponse>

Attachments
How well did this answer your question?