我尝试使用Amazon上传提要,并成功地更新了数量。
但是价格呢?失败了。
下面是我上传的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是否不正确,导致价格变动?
你能给我举个例子,通过提要API来更新价格吗?
发布于 2022-06-29 07:15:12
消息节点需要指定操作类型。
<Message>
<MessageID>1</MessageID>
<OperationType>Update</OperationType>
<Price>
<SKU>1234567</SKU>
<StandardPrice currency="USD">100.00</StandardPrice>
</Price>
</Message>
Other possible values are Delete and PartialUpdatehttps://stackoverflow.com/questions/71723485
复制相似问题