What is the meaning of “StandardProductID” (ASIN) in Amazon Seller inventory?

偶尔善良 提交于 2020-01-07 04:20:25

问题


We are trying to create products in Amazon seller account via feed api using xml files . I saw there is a tag for "StandardProductID" in xml but I want to know that should we create this id for amazon or amazon will create these ids after successful product feed operation . NOTE : We are sending products from salesforce to Amazon seller account. Basic question :

  • What is the exact use of StandardProductID ID (ASIN) .
  • How to create this ID if we have to add this in xml while creating product for first time. Thanks !

回答1:


The StandardProductTypeID specifies either an ASIN, UPC or EAN number. You should use the ASIN if you have it, otherwise the UPC or EAN. For example:

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

or, if you don't have the ASIN:

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


来源:https://stackoverflow.com/questions/44860007/what-is-the-meaning-of-standardproductid-asin-in-amazon-seller-inventory

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!