How to getting sellers listing limit details
Find the answer to your question
Advanced Search
Published: September 06 2023, 5:30:00 PMUpdated: September 18 2023, 11:36:06 AM
Question
Is there an API that returns a sellers listing limit details?
Answer
The Trading API GetMyeBaySelling call returns the remaining quantity of items that the seller can sell, and the remaining value amount, via the Summary.AmountLimitRemaining and Summary.QuantityLimitRemaining elements.
You will need to set SellingSummary.Include to true in the request as below in order to get the seller’s selling activity counts and values.
<?xml version="1.0" encoding="utf-8"?>
<GetMyeBaySellingRequest xmlns="urn:ebay:apis:eBLBaseComponents">
<ErrorLanguage>en_US</ErrorLanguage>
<WarningLevel>High</WarningLevel>
<SellingSummary>
<Include>true</Include>
</SellingSummary>
</GetMyeBaySellingRequest>
See GetMyeBaySelling API documentation for details.
How well did this answer your question?
Answers others found helpful