3

I have tried lot of the time in Submit Feed (product) in Amazon Marketplace. There is a lack of clear information and the reference document is also not good as much. It is have only the basic feed submission.

I need to create new product with size and color information. Please the code below,

  <MessageType>Product</MessageType>
  <Message>
    <MessageID>1</MessageID>
    <OperationType>Update</OperationType>
    <Product>
      <SKU>5000-***-**-*</SKU>
      <StandardProductID>
        <Type>UPC</Type>
        <Value>YSjsjs899ss</Value>
      </StandardProductID>
      <Condition>
        <ConditionType>New</ConditionType>
      </Condition>      
      <DescriptionData>
        <Title>Backout T-Shirt Light Pink Medium</Title>
        <Brand>Blackout T-Shirt</Brand>
        <Description>This is an sample product added by bala.</Description>
        <BulletPoint>Made in Italy</BulletPoint>
        <MSRP currency="USD">2.19</MSRP>
        <Manufacturer>Peacock Alley</Manufacturer>
        <ItemType>Novelty T-Shirts</ItemType>
      </DescriptionData>
      <ProductData>
        <Clothing>
          <VariationData>
            <Parentage>child</Parentage>
            <VariationTheme>SizeColor</VariationTheme>
            <Size>M</Size>
          </VariationData>          
          <SizeMap>Medium</SizeMap>
          <ColorName>Light Pink</ColorName>
          <ColorMap>pink</ColorMap>   
          <ClassificationData>
            <ClothingType>Underwear</ClothingType>
            <Department>mens</Department>
            <ModelNumber>CM203</ModelNumber>
         </ClassificationData>
        </Clothing>
      </ProductData>
    </Product>
  </Message>

But it is not working. Please guide me to do this.

Regards,
Balaganesh

4

1 回答 1

0

我知道这个答案已经晚了,但是我今天刚刚有另一个问题导致我来到这里,虽然这对我没有帮助,但我相信无论如何我都可以回答这个问题。所以这里是:

您可以在此处找到 XSD(即 xml 架构文件):https ://images-na.ssl-images-amazon.com/images/G/01/rainier/help/xsd/release_4_1/ProductClothing.xsd

与 JSON 不同的特殊之处在于 this 具有:sequence属性。这意味着元素进入 xml 文件的顺序很重要

ColorSize变体主题中,VariationTheme 块应如下所示:

<VariationData>
  <Parentage>child</Parentage>
  <Size>S</Size>
  <Color>White</Color>
  <VariationTheme>SizeColor</VariationTheme>
</VariationData>
于 2018-08-04T08:47:21.557 回答