I have a feed which sets the price of a book in my amazon inventory.
I am able to set the standard price of the book but I have no idea how to set the shipping price, I want to set the shipping price to 0, below is the current feed that I am using.
<?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>xxxx</MerchantIdentifier>
</Header>
<MessageType>Price</MessageType>
<Message>
<MessageID>1</MessageID>
<Price>
<SKU>0115531310-New</SKU>
<StandardPrice currency="GBP">50.01</StandardPrice>
</Price>
</Message>
</AmazonEnvelope>