Good day,
I can not seem to be able to fetch all of the items from my store, with either of the options for getting items from a store. The call returns some items for the first ~5 or so pages, and then returns 0 items for every page past that, even though the total item count is around ~30k and the page count is ~300. Below are the two calls, and a sample response. What could be the issue here?
X-EBAY-SOA-OPERATION-NAME:findItemsAdvanced <findItemsAdvancedRequest xmlns="http://www.ebay.com/marketplace/search/v1/services"> <itemFilter> <name>Seller</name> <value>tshirtgods</value> </itemFilter> <paginationInput> <entriesPerPage>100</entriesPerPage> <pageNumber>5</pageNumber> </paginationInput> <outputSelector>SellerInfo</outputSelector> </findItemsAdvancedRequest> ===================================================== X-EBAY-SOA-OPERATION-NAME:findItemsIneBayStores <?xml version="1.0" encoding="UTF-8"?> <findItemsIneBayStoresRequest xmlns="http://www.ebay.com/marketplace/search/v1/services"> <storeName>T-Shirt Gods</storeName> <paginationInput> <entriesPerPage>100</entriesPerPage> <pageNumber>5</pageNumber> </paginationInput> </findItemsIneBayStoresRequest>
================================================
Response (page 5 out of 296 with no items returned):
<findItemsAdvancedResponse xmlns="http://www.ebay.com/marketplace/search/v1/services"> <ack>Success</ack> <version>1.13.0</version> <timestamp>2021-04-27T15:13:28.048Z</timestamp> <searchResult count="0"/> <paginationOutput> <pageNumber>5</pageNumber> <entriesPerPage>100</entriesPerPage> <totalPages>296</totalPages> <totalEntries>29521</totalEntries> </paginationOutput> <itemSearchURL>https://www.ebay.com/sch/i.html?_fss=1&_sasl=tshirtgods&LH_SpecificSeller=1&_saslop=1&_ddo=1&_ipg=100&_os=S%7CD&_pgn=5</itemSearchURL> </findItemsAdvancedResponse>
Thanks in advance.