Developers Program

Finding API - multiple outputSelector values

Published: May 13 2010, 10:42:00 PM·Updated: August 23 2022, 7:38:49 AM

Products

Question

specify multiple outputSelector values in Finding API

Answer

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>
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
How well did this answer your question?