我有3个市场(DE,UK,IT),主要是DE,其他市场是从DE(我们通过AMW服务API控制库存)加载的,但现在我们不会使用分开的所有市场。 对于测试,我们断开了英国市场,删除了产品,现在我尝试向英国市场提交Feed。这是_POST_PRODUCT_DATA_ submit:
<?xml version="1.0" encoding="UTF-8"?>
<AmazonEnvelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="amzn-envelope.xsd">
<Header>
<DocumentVersion>1.01</DocumentVersion>
<MerchantIdentifier>xxxxxxxxxxxxxx</MerchantIdentifier>
</Header>
<MessageType>Product</MessageType>
<PurgeAndReplace>false</PurgeAndReplace>
<Message>
<MessageID>1</MessageID>
<OperationType>PartialUpdate</OperationType>
<Product>
<SKU>0000036869</SKU>
<StandardProductID>
<Type>EAN</Type>
<Value>5907695571806</Value>
</StandardProductID>
<Condition>
<ConditionType>New</ConditionType>
</Condition>
<DescriptionData>
<Title>Skateboard, Fishboard, Recreational riding Nils</Title>
<Brand>Nils</Brand>
<Description>SKATEBOARD by NILS
Skateboard with a robust plastic material, called polypropylene (PP) - skateboards are stronger than with conventional skateboards made of plywood.
Thanks to the truss on the upper side skateboard possessed better grip, more stability, safe driving, the effect of non slip.
The advantage is surely the small size of skateboards, so fits easily into even a small backpack, and interesting colors.
</Description>
<BulletPoint>Dimensions: 58 x 15.5 cm, Material: polypropylene (PP), Truck: 3.25, Bearings: ABEC-5,</BulletPoint>
<BulletPoint>Wheels: PU 60 x 45 mm,Hardness 78A,Maximum user weight: 100kg,Color: green,Color wheels: yellow,</BulletPoint>
<BulletPoint>A robust, Durable, Truss on the top side with a grip enhancing, Stable,</BulletPoint>
<BulletPoint>Small size allows placement of skateboards in a backpack,</BulletPoint>
<BulletPoint>Bent back part of the board.</BulletPoint>
<Manufacturer>Nils</Manufacturer>
<ItemType>SportingGoods</ItemType>
</DescriptionData>
<ProductData>
<Sports>
<ProductType>SportingGoods</ProductType>
</Sports>
</ProductData>
</Product>
</Message>
<Message>
<MessageID>2</MessageID>
<OperationType>PartialUpdate</OperationType>
<Product>
<SKU>0000027472</SKU>
<StandardProductID>
<Type>EAN</Type>
<Value>5907695581935</Value>
</StandardProductID>
<Condition>
<ConditionType>New</ConditionType>
</Condition>
<DescriptionData>
<Title>Replaceable plates on sticks Nordic Walking 2 pcs. Nils</Title>
<Brand>Nils</Brand>
<Description>PLATES FOR NORDIC WALKING POLES
2pcs.
Set of two interchangeable plates for Nordic Walking sticks, to prevent collapse of the sticks in the ground and mud.
</Description>
<BulletPoint>Material: plastic,</BulletPoint>
<BulletPoint>Diameter: approx. 5 cm,</BulletPoint>
<BulletPoint>Set: 2 pieces,</BulletPoint>
<BulletPoint>Color: black.</BulletPoint>
<Manufacturer>Nils</Manufacturer>
<ItemType>SportingGoods</ItemType>
</DescriptionData>
<ProductData>
<Sports>
<ProductType>SportingGoods</ProductType>
</Sports>
</ProductData>
</Product>
</Message>
</AmazonEnvelope>
提交后,几分钟后我检查提交(使用GetFeedSubmissionResult),上面的回复:
<?xml version="1.0" encoding="UTF-8"?>
<AmazonEnvelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="amzn-envelope.xsd">
<Header>
<DocumentVersion>1.02</DocumentVersion>
<MerchantIdentifier>M_FIRMAHANDL_1586538</MerchantIdentifier>
</Header>
<MessageType>ProcessingReport</MessageType>
<Message>
<MessageID>1</MessageID>
<ProcessingReport>
<DocumentTransactionID>420618017358</DocumentTransactionID>
<StatusCode>Complete</StatusCode>
<ProcessingSummary>
<MessagesProcessed>2</MessagesProcessed>
<MessagesSuccessful>2</MessagesSuccessful>
<MessagesWithError>0</MessagesWithError>
<MessagesWithWarning>0</MessagesWithWarning>
</ProcessingSummary>
</ProcessingReport>
</Message>
</AmazonEnvelope>
但在我的卖家中央库存没有出现...... 我读了很多主题,但没有运气。
我甚至尝试做下一件事 - 发送英国MarketplaceIdList更改价格Feed(_POST_PRODUCT_PRICING_DATA _):
<?xml version="1.0" encoding="UTF-8"?>
<AmazonEnvelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="amzn-envelope.xsd">
<Header>
<DocumentVersion>1.01</DocumentVersion>
<MerchantIdentifier>XXXXXXXXXXX</MerchantIdentifier>
</Header>
<MessageType>Price</MessageType>
<Message>
<MessageID>1</MessageID>
<Price>
<SKU>0000036869</SKU>
<StandardPrice currency="GBP">27.73</StandardPrice>
</Price>
</Message>
</AmazonEnvelope>
响应:
<?xml version="1.0" encoding="UTF-8"?>
<AmazonEnvelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="amzn-envelope.xsd">
<Header>
<DocumentVersion>1.02</DocumentVersion>
<MerchantIdentifier>M_FIRMAHANDL_1586538</MerchantIdentifier>
</Header>
<MessageType>ProcessingReport</MessageType>
<Message>
<MessageID>1</MessageID>
<ProcessingReport>
<DocumentTransactionID>420724017358</DocumentTransactionID>
<StatusCode>Complete</StatusCode>
<ProcessingSummary>
<MessagesProcessed>1</MessagesProcessed>
<MessagesSuccessful>1</MessagesSuccessful>
<MessagesWithError>0</MessagesWithError>
<MessagesWithWarning>0</MessagesWithWarning>
</ProcessingSummary>
</ProcessingReport>
</Message>
</AmazonEnvelope>
最后一个,_POST_INVENTORY_AVAILABILITY_DATA_ feed:
<?xml version="1.0" encoding="UTF-8"?>
<AmazonEnvelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="amzn-envelope.xsd">
<Header>
<DocumentVersion>1.01</DocumentVersion>
<MerchantIdentifier>AJICEPNWN291Z</MerchantIdentifier>
</Header>
<MessageType>Inventory</MessageType>
<Message>
<MessageID>1</MessageID>
<OperationType>Update</OperationType>
<Inventory>
<SKU>0000036869</SKU>
<Quantity>92</Quantity>
</Inventory>
</Message>
</AmazonEnvelope>
并回复:
<?xml version="1.0" encoding="UTF-8"?>
<AmazonEnvelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="amzn-envelope.xsd">
<Header>
<DocumentVersion>1.02</DocumentVersion>
<MerchantIdentifier>M_FIRMAHANDL_1586538</MerchantIdentifier>
</Header>
<MessageType>ProcessingReport</MessageType>
<Message>
<MessageID>1</MessageID>
<ProcessingReport>
<DocumentTransactionID>420709017358</DocumentTransactionID>
<StatusCode>Complete</StatusCode>
<ProcessingSummary>
<MessagesProcessed>1</MessagesProcessed>
<MessagesSuccessful>1</MessagesSuccessful>
<MessagesWithError>0</MessagesWithError>
<MessagesWithWarning>0</MessagesWithWarning>
</ProcessingSummary>
</ProcessingReport>
</Message>
</AmazonEnvelope>
此步骤仍然没有英国库存产品...... 所有Feed都指向英国市场(我认为 - MarketplaceIdList有[&#34; Id&#34; =&gt;&#34; UK_MARKETPLACE_ID&#34;]) 我不知道我做错了什么。
答案 0 :(得分:0)
问题解决了。我们还剩下一个产品仍然存在于英国市场,因为并非所有产品详细信息字段都填写正确(首先填写所有字段,然后您可以删除产品)。