" StandardProductID"是什么意思? (ASIN)亚马逊卖家库存?

时间:2017-07-01 10:42:29

标签: xml salesforce amazon integration amazonsellercentral

我们正尝试使用xml文件通过Feed api在亚马逊卖家帐户中创建产品。我看到有一个标签为" StandardProductID"在xml中,但我想知道,如果我们为亚马逊或亚马逊创建此ID,将在成功的产品Feed操作后创建这些ID。 注意:我们将salesforce的产品发送到亚马逊卖家帐户。 基本问题:

  • StandardProductID ID(ASIN)的确切用法是什么。
  • 如果我们必须在第一次创建产品时在xml中添加此ID,请如何创建此ID。 谢谢!

1 个答案:

答案 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>