01-08-2025 09:51 AM - edited 01-08-2025 09:56 AM
I am trying to find an API call that will return my current active inventory in JSON format. The "Trading API > GetMyeBaySelling" API works great except it returns XML format. I'm specifically looking for "ItemID" and "Title". This is what I'm using for the Trading API:
<?xml version="1.0" encoding="utf-8"?>
<GetMyeBaySellingRequest xmlns="urnapis:eBLBaseComponents">
<ErrorLanguage>en_US</ErrorLanguage>
<WarningLevel>High</WarningLevel>
<OutputSelector>Title</OutputSelector>
<OutputSelector>ItemID</OutputSelector>
<ActiveList>
<Sort>TimeLeft</Sort>
<Pagination>
<EntriesPerPage>200</EntriesPerPage>
<PageNumber>1</PageNumber>
</Pagination>
</ActiveList>
</GetMyeBaySellingRequest>
I'm trying to avoid transforming the XML to JSON if I can.
Solved! Go to Best Answer
01-15-2025 04:59 AM
01-15-2025 04:59 AM