Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/xml/12.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Xml “是什么意思?”;标准产品ID“;(ASIN)在亚马逊卖家库存中?_Xml_Salesforce_Amazon_Integration_Amazonsellercentral - Fatal编程技术网

Xml “是什么意思?”;标准产品ID“;(ASIN)在亚马逊卖家库存中?

Xml “是什么意思?”;标准产品ID“;(ASIN)在亚马逊卖家库存中?,xml,salesforce,amazon,integration,amazonsellercentral,Xml,Salesforce,Amazon,Integration,Amazonsellercentral,我们正在尝试通过使用xml文件的FeedAPI在Amazon卖家帐户中创建产品。我看到xml中有一个“StandardProductID”的标记,但我想知道我们应该为amazon创建这个id,还是amazon会在成功的产品提要操作后创建这些id。 注意:我们正在将产品从salesforce发送到Amazon卖家帐户。 基本问题: StandardProductID(ASIN)的确切用途是什么 如果我们在第一次创建产品时必须在xml中添加此ID,那么如何创建此ID。 谢谢 标准ProductTy

我们正在尝试通过使用xml文件的FeedAPI在Amazon卖家帐户中创建产品。我看到xml中有一个“StandardProductID”的标记,但我想知道我们应该为amazon创建这个id,还是amazon会在成功的产品提要操作后创建这些id。 注意:我们正在将产品从salesforce发送到Amazon卖家帐户。 基本问题:

  • StandardProductID(ASIN)的确切用途是什么
  • 如果我们在第一次创建产品时必须在xml中添加此ID,那么如何创建此ID。 谢谢
标准ProductTypeID指定ASIN、UPC或EAN编号。如果有ASIN,则应使用它,否则应使用UPC或EAN。例如:

  <StandardProductID>
    <Type>ASIN</Type>
    <Value>B000LQLG7E</Value>
  </StandardProductID>

阿辛
B000LQLG7E
或者,如果您没有ASIN:

  <StandardProductID>
    <Type>UPC</Type>
    <Value>722470314639</Value>
  </StandardProductID>

UPC
722470314639

您还可以为GTIN值指定“GTIN”。根据我们的亚马逊代表,他们最近做了一些更改,如果您有UPC,最好发送UPC,而不是ASIN。