2015-10-14 182 views
0

我真的很困惑与一个API结果。MWS:ListPrice混淆

API请求:GetMatchingProductForIdRequest/IdType ASIN

市场:DE A1PA6795UKMFR9

ASIN:B001B603YU

API响应ListPrice:€81.99

亚马逊网址:http://www.amazon.de/gp/product/B001B603YU

价格上亚马逊:44.17欧元

它是价格不匹配的大型列表中唯一的产品。

回答

0

我想你误解了这个API。 ListPrice表示RRP =建议零售价格(德语UVP = unverbindliche Preisempfehlung)。这不是您可以在亚马逊购买产品的价格。查看API调用GetCompetitivePricingForASIN以获得您想要的价格。例如:

<?xml version="1.0"?> 
<GetCompetitivePricingForASINResponse xmlns="http://mws.amazonservices.com/schema/Products/2011-10-01"> 
<GetCompetitivePricingForASINResult ASIN="B001B603YU" status="Success"> 
    <Product xmlns="http://mws.amazonservices.com/schema/Products/2011-10-01" xmlns:ns2="http://mws.amazonservices.com/schema/Products/2011-10-01/default.xsd"> 
    <Identifiers> 
     <MarketplaceASIN> 
     <MarketplaceId>A1PA6795UKMFR9</MarketplaceId> 
     <ASIN>B001B603YU</ASIN> 
     </MarketplaceASIN> 
    </Identifiers> 
    <CompetitivePricing> 
     <CompetitivePrices> 
     <CompetitivePrice belongsToRequester="false" condition="New" subcondition="New"> 
      <CompetitivePriceId>1</CompetitivePriceId> 
      <Price> 
      <LandedPrice> 
       <CurrencyCode>EUR</CurrencyCode> 
       <Amount>44.13</Amount> 
      </LandedPrice> 
      <ListingPrice> 
       <CurrencyCode>EUR</CurrencyCode> 
       <Amount>44.13</Amount> 
      </ListingPrice> 
      <Shipping> 
       <CurrencyCode>EUR</CurrencyCode> 
       <Amount>0.00</Amount> 
      </Shipping> 
      </Price> 
     </CompetitivePrice> 
     </CompetitivePrices> 
     <NumberOfOfferListings> 
     <OfferListingCount condition="Any">15</OfferListingCount> 
     <OfferListingCount condition="New">15</OfferListingCount> 
     </NumberOfOfferListings> 
    </CompetitivePricing> 
    <SalesRankings> 
     <SalesRank> 
     <ProductCategoryId>pet_products_display_on_website</ProductCategoryId> 
     <Rank>21552</Rank> 
     </SalesRank> 
     <SalesRank> 
     <ProductCategoryId>470605031</ProductCategoryId> 
     <Rank>453</Rank> 
     </SalesRank> 
    </SalesRankings> 
    </Product> 
</GetCompetitivePricingForASINResult> 
<ResponseMetadata> 
    <RequestId>aa089a13374fcd2ad</RequestId> 
</ResponseMetadata> 
</GetCompetitivePricingForASINResponse>