Product Advertising API
Developer Guide (API Version 2011-08-01)
Print this pageEmail this pageGo to the ForumsView the PDFShare this page on TwitterShare this page on FacebookBookmark this page on DeliciousSubmit this page to RedditSubmit this page to DiggDid this page help you?  Yes  No   Tell us about it...

Variation Parents

The abstraction of the variations is called the variation parent. The title element of the variation parent names the variations, for example, "Long Sleeve Classic Pocket Tee." Because the parent ASIN is an abstraction, it cannot be purchased, that is, it is not associated with an offer. The following request uses the Offers response group in an ItemLookup of a parent variation.

http://webservices.amazon.com/onca/xml?
Service=AWSECommerceService&
AWSAccessKeyId=[AWS Access Key ID]&
Operation=ItemLookup&
ItemId=B00006XYAB&
IdType=ASIN&
Condition=All
ResponseGroup=ItemAttributes,Offers
&Timestamp=[YYYY-MM-DDThh:mm:ssZ]
&Signature=[Request Signature]

As you can see in the following response snippet, no offers are returned.

<Item>
  <ASIN>B00006XYAB</ASIN>     
  <ItemAttributes>
    <Binding>Apparel</Binding>
    <Brand>Eddie Bauer</Brand>
    <Department>mens</Department>
    <FabricType>leather</FabricType>
    <Feature>Cotton.</Feature>
    <Feature>Single chest pocket.</Feature>
    <Feature>Side seamed to prevent twisting.</Feature>
    <Feature>Coverstitched seams add strength.</Feature>
    <ProductGroup>Apparel</ProductGroup>
    <Title>LongSleeve Classic Pocket Tee</Title>
  </ItemAttributes>
  <OfferSummary>
    <TotalNew>0</TotalNew>
    <TotalUsed>0</TotalUsed>
    <TotalCollectible>0</TotalCollectible>
    <TotalRefurbished>0</TotalRefurbished>
  </OfferSummary>
  <Offers>
    <TotalOffers>0</TotalOffers>
    <TotalOfferPages>0</TotalOfferPages>
  </Offers>
</Item>