Home
Find the answer to your question
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> |