I am developing a ebay app which is retrieving the users ebay selling items from ebay to my website. I am using a following API call for retrieving users listings which is working fine
<?xml version="1.0" encoding="utf-8"?>
<GetSellerListRequest xmlns="urn:ebay:apis:eBLBaseComponents">
<RequesterCredentials>
<eBayAuthToken>USER_TOKEN</eBayAuthToken>
</RequesterCredentials>
<CategoryID>33657</CategoryID>
<ErrorLanguage>en_US</ErrorLanguage>
<WarningLevel>High</WarningLevel>
<GranularityLevel>Coarse</GranularityLevel>
<StartTimeFrom>2018-06-28T21:59:59.005Z</StartTimeFrom>
<StartTimeTo>2018-08-26T21:59:59.005Z</StartTimeTo>
<IncludeWatchCount>true</IncludeWatchCount>
<Pagination>
<EntriesPerPage>200</EntriesPerPage>
</Pagination>
</GetSellerListRequest>
In current situation above API call only accepting a single category ID for retrieving seller list according to that category.
I am looking for how can I retrieve seller list items with multiple category ID. Is there any way to add multiple category ID to above API call to retrieve items according to multiple categories please help me with this and thanks in advance