Returning New Releases From Shopping Cart
Items
A great way to spur add-on sales is by presenting customers with newly released items that are similar
to items in their shopping cart. The CartNewReleases response group enables you to do this. This
response group works with most cart operations.
The CartNewReleases response group returns the ASINs and titles of the top five new releases in the
root category of the item specified in the cart operation. For example, when adding a television to a cart
the top five new releases in the root category, electronics, are returned.
In the following request, an item is added twice to a newly-created shopping cart.
http://webservices.amazon.com/onca/xml?
Service=AWSECommerceService&
AWSAccessKeyId=
[AWS Access Key ID]
&
AssociateTag=ws&
Operation=CartCreate&
Item.1.ASIN=B000062TU1&
Item.1.Quantity=2&
ResponseGroup=CartNewReleases
&Timestamp=[YYYY-MM-DDThh:mm:ssZ]
&Signature=[Request Signature]
The response includes a new release from the root product category.
<NewReleases>
<NewRelease>
<ASIN>B00005JOFQ</ASIN>
<Title>Brokeback Mountain (Widescreen Edition)</Title>
</NewRelease>
</NewReleases>
Sorting by Popularity, Price, or Condition
The order in which you present the items returned is important to your customers. Often, they would like
to know things, such as, what item is the least expensive, which is the most popular, which items are
collectibles? Product Advertising API provides this functionality using the Sort parameter in
ItemSearch
requests.
The valid values for the Sort parameter in
ItemSearch
requests vary by locale and search index. For a
complete list of valid values, see
ItemSearch Sort Values By Locale. (p. 314)
Some of the most common
ItemSearch
Sort parameter values are described in the following table.
Description
Sort Parameter
Order items according to price from cheapest to the most expensive.
The three versions of this value are equivalent in meaning but are
valid in different search indices.
pricerank, price, +price
Order items according to price from the most expensive to the
cheapest. The two versions of this value are equivalent in meaning
but are valid in different search indices.
inversepricerank, -price
API Version 2011-08-01
123
Product Advertising API Developer Guide
Returning New Releases From Shopping Cart Items