Amazon SP-API Feed API POST_PRODUCT_PRICING_DATA 无法更新价格
我尝试使用 Amazon Feeds API 上传 Feed,并成功更新数量。
但价格呢?它失败了。
这是我上传的xml:
<?xml version="1.0" encoding="UTF-8"?>
<AmazonEnvelope>
<Header>
<DocumentVersion>1.02</DocumentVersion>
<MerchantIdentifier>XXXXXXXXXXXX</MerchantIdentifier>
</Header>
<MessageType>Price</MessageType>
<Message>
<MessageID>1</MessageID>
<Price>
<SKU>XXXXXXXXXXX</SKU>
<StandardPrice currency="USD">100.00</StandardPrice>
</Price>
</Message>
</AmazonEnvelope>
等待后,价格保持不变。
我如何更新价格?上面的 XML 是否不正确,无法更改价格?
您能给我展示一个通过 Feed API 更新价格的示例吗?
I tried using the Amazon Feeds API to upload a feed and was successful in updating the quantity.
But what about the price? It failed.
Here is the xml I uploaded:
<?xml version="1.0" encoding="UTF-8"?>
<AmazonEnvelope>
<Header>
<DocumentVersion>1.02</DocumentVersion>
<MerchantIdentifier>XXXXXXXXXXXX</MerchantIdentifier>
</Header>
<MessageType>Price</MessageType>
<Message>
<MessageID>1</MessageID>
<Price>
<SKU>XXXXXXXXXXX</SKU>
<StandardPrice currency="USD">100.00</StandardPrice>
</Price>
</Message>
</AmazonEnvelope>
After waiting, the price remained the same.
How can I update the price? Is the above XML not correct to make the price change?
Please can you show me an example that will update the price via the feed API?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Message节点需要指定操作类型。
The Message node needs to specify operation type.