我们正尝试使用xml文件通过Feed api在亚马逊卖家帐户中创建产品。我看到有一个标签为" StandardProductID"在xml中,但我想知道,如果我们为亚马逊或亚马逊创建此ID,将在成功的产品Feed操作后创建这些ID。 注意:我们将salesforce的产品发送到亚马逊卖家帐户。 基本问题:
答案 0 :(得分:1)
StandardProductTypeID指定ASIN,UPC或EAN编号。你应该使用ASIN,否则使用UPC或EAN。例如:
<StandardProductID>
<Type>ASIN</Type>
<Value>B000LQLG7E</Value>
</StandardProductID>
或者,如果你没有ASIN:
<StandardProductID>
<Type>UPC</Type>
<Value>722470314639</Value>
</StandardProductID>