Hi,
I am trying to add a new product using MWS, Here's the XML I am using:
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<AmazonEnvelope>
<Header>
<DocumentVersion>1.01</DocumentVersion>
<MerchantIdentifier>my merchant id</MerchantIdentifier>
</Header>
<MessageType>Product</MessageType>
<Message>
<MessageID>1</MessageID>
<Product>
<SKU>SKU-TEST-123</SKU>
<StandardProductID>
<Type>ISBN</Type>
<Value>9781235467899</Value>
</StandardProductID>
<LaunchDate>2010-02-17T20:15:58.309+02:00</LaunchDate>
<ReleaseDate>2010-02-17T20:15:58.309+02:00</ReleaseDate>
<DescriptionData>
<Title>My Product</Title>
<Description>Product Description ...</Description>
</DescriptionData>
</Product>
</Message>
</AmazonEnvelope>
I got error in the processing report:
<Result>
<MessageID>1</MessageID>
<ResultCode>Error</ResultCode>
<ResultMessageCode>8060</ResultMessageCode>
<ResultDescription>The Product with SKU [SKU-TEST-123] cannot be matched to an existing product for the following reason: (NEW is not allowed; ). For more details, see http://sellercentral.amazon.com/gp/errorcode/8060</ResultDescription>
<AdditionalInfo>
<SKU>SKU-TEST-123</SKU>
</AdditionalInfo>
</Result>
I should be able to upload new products, no? Is there any restrictions to the SKU?