Skip to main content
Published: December 04 2008, 11:44:00 PMUpdated: August 08 2022, 6:41:41 AM

Question

Why my sold items are not reported in GetMyeBaySelling API

 

Answer

Detailed Description 

Seller can remove or delete sold or unsold items from My eBay.  If GetMyeBaySelling API call returns less number of sold or unsold items compared to your local repository record,  you should check DeletedFromSoldList and DeletedFromUnsoldList by sending a simple query as below:

 <?xml version="1.0" encoding="utf-8"?>
<GetMyeBaySellingRequest xmlns="urn:ebay:apis:eBLBaseComponents">
  <Version>1123</Version>
  <DetailLevel>ReturnAll</DetailLevel>
  <RequesterCredentials>
    <eBayAuthToken>TOKEN</eBayAuthToken>
  </RequesterCredentials>


  <DeletedFromSoldList>
  </DeletedFromSoldList>

<DeletedFromUnsoldList>
  </DeletedFromUnsoldList>

<UnsoldList>
  </UnsoldList>


<SoldList>
  </SoldList>

</GetMyeBaySellingRequest>


  Additional Information 


     GetMyeBaySelling I/O document

 

How well did this answer your question?
Answers others found helpful