06-25-2024 01:50 PM
I added items via AddItem, AddItems, and AddFixedPriceItem. I also used RelistItem and now I'm confident that I have active listings. However, in the Sandbox environment, I can't see these listings without navigating directly to their URL, e.g., https://sandbox.ebay.com/itm/{itemId}. When accessing these URLs, I can view my listings.
GetMyebaySelling should return these listings, but the response from the endpoint does not include them:
This response does not retrieve my listings. However, using GetItem for a specific item does retrieve a single listing:
It doesn't make sense that GetMyebaySelling doesn't return any of my listings while GetItem does for a specific item. I need to get all of my listings and if anyone can help me resolve this issue, I would appreciate it.
Thank you!
07-12-2024 10:09 AM
Did you find a solution? I am having basically the same problem.
I've created multiple listings using the Sandbox API (and waited multiple days for the listings to turn active in case that was the problem) and get none back on any GetMyebaySelling calls with different parameters and filters. Using GetSellerList does return the listings but this method won't be useful in production due to the time constrains etc..
08-14-2024 05:03 AM
Hey I am having the exact same issue,
I have tried all sorts of XML bodies
currently, I am trying this one
<?xml version="1.0" encoding="utf-8"?>
apis:eBLBaseComponents">
<RequesterCredentials>
<eBayAuthToken>${accessToken}</eBayAuthToken>
</RequesterCredentials>
<ActiveList>
<Sort>TimeLeft</Sort>
<DurationInDays>100</DurationInDays>
<Pagination>
<EntriesPerPage>3</EntriesPerPage>
<PageNumber>1</PageNumber>
</Pagination>
</ActiveList>
</GetMyeBaySellingRequest>`;
and my header looks like this
09-05-2024 09:01 AM
I'm in the same boat as " is-8920". Has anyone figured this out? Is it only available in production?