Skip to main content
Published: May 13 2010, 10:42:00 PMUpdated: August 23 2022, 7:38:49 AM

 specify multiple outputSelector values in Finding API

Summary

 The samples below illustrate how to define multiple outputSelector values in Finding API call:

 HTTP GET:

http://svcs.ebay.com/services/search/FindingService/v1?OPERATION-NAME=findItemsAdvanced­&SERVICE-VERSION=1.0.0­&SECURITY-APPNAME=YOUR APPID&paginationInput.entriesPerPage=5&keywords=iPhone&outputSelector[0]=SellerInfo&outputSelector[1]=StoreInfo

 

HTTP POST:

 <findItemsAdvancedRequest xmlns="http://www.ebay.com/marketplace/search/v1/services">
   <paginationInput>
      <pageNumber>1</pageNumber>
      <entriesPerPage>3</entriesPerPage>
   </paginationInput>
<outputSelector>SellerInfo</outputSelector>
<outputSelector>StoreInfo</outputSelector>
   <keywords>iPhone</keywords>
</findItemsAdvancedRequest>

 

 

 

 

How well did this answer your question?
Answers others found helpful