如何通过MWS /亚马逊报告检索当前销售价格和日期

cap*_*ica 3 amazon-mws

我查看了所有可以找到的报告文档和各种MWS操作,但我不能在我的生活中找到任何方法来检索我们目前的SKU当前设置的销售价格,销售开始日期和销售结束日期抛售.

澄清:我正在尝试检索销售价格,而不是标准的"上市价格".当通过卖家中心直接编辑项目时,这些字段会被标记Sale Price,Sale From Date并且Sale End Date.哪个与主要价格分开,后者标有Your price.

我的搜索功能是否缺乏,或者这些信息是否无法通过MWS检索(直接或通过某些报告或其他报告)?

非常感谢!

C

mpo*_*map 7

当您致电GetMyPriceForSKU并提供SKU时,您将获得包含以下内容的结果:

<Offers>
  <Offer>
    <BuyingPrice>
      <LandedPrice>
        <CurrencyCode>USD</CurrencyCode>
        <Amount>217.76</Amount>
      </LandedPrice>
      <ListingPrice>
        <CurrencyCode>USD</CurrencyCode>
        <Amount>189.00</Amount>
      </ListingPrice>
      <Shipping>
        <CurrencyCode>USD</CurrencyCode>
        <Amount>28.76</Amount>
      </Shipping>
    </BuyingPrice>
    <RegularPrice>
      <CurrencyCode>USD</CurrencyCode>
      <Amount>199.00</Amount>
    </RegularPrice>
    <FulfillmentChannel>MERCHANT</FulfillmentChannel>
    <ItemCondition>New</ItemCondition>
    <ItemSubCondition>New</ItemSubCondition>
    <SellerId>YOURSELLERID</SellerId>
    <SellerSKU>YOUR_SKU</SellerSKU>
  </Offer>
</Offers>
Run Code Online (Sandbox Code Playgroud)

此示例是在Seller Central中设置销售价格的产品.

您将看到ListingPrice是189.00.这是销售价格.

      <ListingPrice>
        <CurrencyCode>USD</CurrencyCode>
        <Amount>189.00</Amount>
      </ListingPrice>
Run Code Online (Sandbox Code Playgroud)

下面你会看到RegularPrice是199.00.这是正常价格.

    <RegularPrice>
      <CurrencyCode>USD</CurrencyCode>
      <Amount>199.00</Amount>
    </RegularPrice>
Run Code Online (Sandbox Code Playgroud)

以下示例来自未设置销售价格的产品.请注意,ListingPrice和RegularPrice是相同的.

  <Offer>
    <BuyingPrice>
      <LandedPrice>
        <CurrencyCode>USD</CurrencyCode>
        <Amount>33.60</Amount>
      </LandedPrice>
      <ListingPrice>
        <CurrencyCode>USD</CurrencyCode>
        <Amount>24.45</Amount>
      </ListingPrice>
      <Shipping>
        <CurrencyCode>USD</CurrencyCode>
        <Amount>9.15</Amount>
      </Shipping>
    </BuyingPrice>
    <RegularPrice>
      <CurrencyCode>USD</CurrencyCode>
      <Amount>24.45</Amount>
    </RegularPrice>
    <FulfillmentChannel>MERCHANT</FulfillmentChannel>
    <ItemCondition>New</ItemCondition>
    <ItemSubCondition>New</ItemSubCondition>
    <SellerId>YOUR_SELLERID</SellerId>
    <SellerSKU>YOUR_SKU</SellerSKU>
  </Offer>
Run Code Online (Sandbox Code Playgroud)

不幸的是,亚马逊没有通过Feed提供销售开始和结束日期.截至目前,我不知道检索这些日期的方法.如果您想了解所有待售产品,您只需比较每个产品的ListingPrice和RegularPrice即可.当Sale到期时,ListingPrice将恢复为RegularPrice.