Skip to main content
Published: July 19 2007, 4:05:00 PMUpdated: August 23 2022, 3:47:01 AM

GetMyeBaySelling provides a transient and convenient "view" of items and transactions. For persistent results, use GetSellerTransactions.


Detailed Description

GetMyeBaySelling is a service provided through the HTML and API
interfaces. GetMyeBaySelling intends to provide a convenient
and customizable summary for a seller. Specifically, users
can "remove" items/transactions from their MyeBaySelling view.
However, such removal from the view does not remove history of
the transaction.
 

Consider the following GetMyeBaySelling request which shows six sales :

<?xml version="1.0" encoding="utf-8"?>
<GetMyeBaySellingRequest xmlns="urn:ebay:apis:eBLBaseComponents">
  <Version>1173</Version>
  <DetailLevel>ReturnAll</DetailLevel>
  <RequesterCredentials>
    <eBayAuthToken>** </eBayAuthToken>
  </RequesterCredentials>
  <SoldList>
    <DurationInDays>2</DurationInDays>
</SoldList>
</GetMyeBaySellingRequest>

...
  <Summary>
    <ActiveAuctionCount>0</ActiveAuctionCount> 
    <AuctionSellingCount>1</AuctionSellingCount> 
    <AuctionBidCount>0</AuctionBidCount> 
    <TotalAuctionSellingValue currencyID="USD">0.0</TotalAuctionSellingValue> 
    <TotalSoldCount>6</TotalSoldCount> 
    <TotalSoldValue currencyID="USD">60.0</TotalSoldValue> 
    <SoldDurationInDays>2</SoldDurationInDays> 
    <ClassifiedAdCount>0</ClassifiedAdCount> 
    <TotalLeadCount>0</TotalLeadCount> 
    <ClassifiedAdOfferCount>0</ClassifiedAdOfferCount> 
    <TotalListingsWithLeads>0</TotalListingsWithLeads> 
  </Summary>
...

 

GetSellerTransactions also gives six sales :

<?xml version="1.0" encoding="utf-8"?>
<GetSellerTransactionsRequest xmlns="urn:ebay:apis:eBLBaseComponents">
  <DetailLevel>ReturnAll</DetailLevel>
 <ModTimeFrom>2022-08-22T00:00:52.799Z</ModTimeFrom>
  <ModTimeTo>2022-08-23T00:00:52.799Z</ModTimeTo>
  <RequesterCredentials>
    <eBayAuthToken>**</eBayAuthToken>
  </RequesterCredentials>
</GetSellerTransactionsRequest>



...   
          <QuantitySold>1</QuantitySold>
...
          <QuantitySold>1</QuantitySold>
...
          <QuantitySold>1</QuantitySold>
...
          <QuantitySold>1</QuantitySold>
...
          <QuantitySold>1</QuantitySold>
...
          <QuantitySold>1</QuantitySold>
...
 

Now remove (hide) items from MyeBay selling



Now use the "Remove" button in the HTML interface to remove five
items from the MyeBaySelling view and make the same GetMyeBaySelling
and GetSellerTransaction calls. You will find GetMyeBaySelling gives
only one item, while GetSellerTransactions still gives six sold :
 
  <Summary>
    <ActiveAuctionCount>0</ActiveAuctionCount> 
    <AuctionSellingCount>1</AuctionSellingCount> 
    <AuctionBidCount>0</AuctionBidCount> 
    <TotalAuctionSellingValue currencyID="USD">0.0</TotalAuctionSellingValue> 
    <TotalSoldCount>1</TotalSoldCount> 
    <TotalSoldValue currencyID="USD">10.0</TotalSoldValue> 
    <SoldDurationInDays>2</SoldDurationInDays> 
    <ClassifiedAdCount>0</ClassifiedAdCount> 
    <TotalLeadCount>0</TotalLeadCount> 
    <ClassifiedAdOfferCount>0</ClassifiedAdOfferCount> 
    <TotalListingsWithLeads>0</TotalListingsWithLeads> 
  </Summary>




Additional resources

GetMyeBaySelling Samples

 

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