正确的亚马逊MWS流程与现有ASIN项目 [英] Correct Amazon MWS flow for item with existing ASIN

查看:1604
本文介绍了正确的亚马逊MWS流程与现有ASIN项目的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我开始使用亚马逊MWS,我似乎无法看到正确的流量任何真实信息,列出项目作为现有的ASIN。比方说,比如我卖了Vulli苏菲长颈鹿咬牙。我做了一个初步的查找使用listMatchingProducts,并发现我的项目已经与ASINB000IDSLOG的存在。这是在这个过程中的下一个阶段?尤其是在这样一个场景,你已经知道你要的ASIN - 所有的事实,该产品原料是为了我们的SKU匹配亚马逊ASIN,但我从来没见过任何明确的信息,表明这实际上是怎样工作的文档会谈使用。

I'm getting started with Amazon MWS and I can't seem to see any real information on the correct flow for listing an item as an existing ASIN. Let's say for example I am selling a "Vulli Sophie the Giraffe Teether". I do an initial lookup using "listMatchingProducts" and find that my item already exists with the ASIN "B000IDSLOG". What is the next stage in the process?. All the documentation talks about the fact that the product feed is intended to match our SKU to the Amazon ASIN but i've not seen any definitive information to suggest how this actually works - especially in the scenario where you already know the ASIN you wish to use.

理想我很感兴趣,看到正确的流量为每个方案(现有的产品搜索结果/未找到)中的什么API调用应该以什么顺序进行计算。

Ideally i'm interested in seeing the correct flow for each scenario (existing product for search found/not found) in terms of what API calls should be made in what order.

感谢

推荐答案

这似乎增加了产品与现有的ASIN实际上你可以发送一个非常基本的XML请求,如这一点,并确保包括ASIN的情况下:

It seems in the case of adding a product with an existing ASIN you can actually send a very basic XML request such as this, making sure to include the ASIN:

<AmazonEnvelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="amznenvelope.xsd">
    <Header>
        <DocumentVersion>1.01</DocumentVersion>
        <MerchantIdentifier>MERCHANT_IDENTIFIER</MerchantIdentifier>
    </Header>
    <MessageType>Product</MessageType>
    <PurgeAndReplace>false</PurgeAndReplace>
    <Message>
        <MessageID>1</MessageID>
        <OperationType>Update</OperationType>
        <Product>
            <SKU>UNIQUE-TO-ME-1234</SKU>
            <StandardProductID>
                <Type>ASIN</Type>
                <Value>B000A0S46M</Value>
            </StandardProductID>
            <Condition>
                <ConditionType>New</ConditionType>
            </Condition>
        </Product>
    </Message>
</AmazonEnvelope>

实质上虽然,从我别处读似乎亚马逊将试图将产物匹配到现有ASIN根据即使未提供ASIN的_POST_PRODUCT_DATA_进料内的数据。它将使用元素如标题,制造商,品牌,和其它产品的特定信息,以比较,为他们的目录,并确定它是否是一个现​​有项或新的要添加。如果你不知道它已经有一个ASIN虽然你可以提供一个非常简单的XML提要如上图所示。

Essentially though, from what i've read elsewhere it seems that Amazon will attempt to match a product to an existing ASIN according to the data within the _POST_PRODUCT_DATA_ feed even if an ASIN isn't provided. It will use elements such as title, manufacturer, brand, and other product specific information to compare that to their catalog and determine if it is an existing item or a new one to be added. If you do know it already has an ASIN though you can provide a very simple XML feed as shown above.

这篇关于正确的亚马逊MWS流程与现有ASIN项目的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆