recommendationsSummary
Note: This initial version of the Listing Recommendation API is not available for testing in the Sandbox environment. |
This call returns a count of listing recommendations for each listing recommendation type for all active listings owned by the seller. If the seller lists items on more than one eBay site, the counts in the response will be separated by site ID. If no listing recommendations are available for any of the seller's active listings, an empty response container is returned.
Output Samples Change History |
recommendationsSummary Input
The recommendationsSummary HTTPS request is shown below. This call does not have any input parameters.
See also Samples.
https://svcs.ebay.com/services/selling/listingrecommendation/v1/item/recommendationsSummary
Input Samples Change History |
recommendationsSummary Output
The XML sample response in the box below lists all parameters that might be returned in the response. To learn more about an individual parameter and its possible values, click its name in the box (or scroll down to find it in the table below the box).
See also Samples.
<?xml version="1.0" encoding="utf-8"?> <recommendationsSummaryResponse xmlns="http://www.ebay.com/marketplace/listing/v1/service"> <!-- Call-Specific Output Fields --> <recommendationsSummary> <recommendation> <type>string</type> <listingCount>int</listingCount> </recommendation> <!-- ... more recommendation nodes possible here ... --> <siteId>string</siteId> </recommendationsSummary> <!-- ... more recommendationsSummary nodes possible here ... --> <!-- (No Standard Output fields) --> </recommendationsSummaryResponse>
Return Value | Type | Occurrence | Meaning |
---|
Call-Specific Output Fields  |
(No Standard Output fields) |
Input Output Change History |
recommendationsSummary Samples
This call retrieves a count of listing recommendations for each listing recommendation type for all active listings owned by the seller.
Description
The following call retrieves a count of listing recommendations for each listing recommendation type for all active listings owned by the seller. If the seller sells items on more than one eBay site, each set of listing recommendations is separated by site.
Input
The recommendationsSummary HTTPS GET call is always the same, and does not have any applicable input parameters.
https://svcs.ebay.com/services/selling/listingrecommendation/v1/item/recommendationsSummary
Output
As indicated by only one set of listing recommendations tied to the 'EBAY-US' site, the seller that made this call only sells items on the US site, or, that seller might sell items on another eBay site, but does not have any listing recommendations for that site.
Looking at the results, one can see that the seller has three US listings with
FnF
listing recommendations, one US listing with one or more
ItemSpecifics
listing recommendations, and one US listing with one or more
Picture
listing recommendations. The seller does not have any eTRS
, Price
, or Title
listing recommendations
since these listing recommendation types did not appear in the results.
{ "recommendationsSummary": [ "siteId": "EBAY-US", "recommendation": [ { "type": "ItemSpecifics", "listingCount": 1 }, { "type": "FnF", "listingCount": 3 }, { "type": "Picture", "listingCount": 1 } ] } ] }
recommendationsSummary Change History
Version | Description |
---|---|
1.0.0 2013-04-12 |
|