Adjust UK exchange rate and shipping

From MediaSell

Jump to: navigation, search

The following script will allow you to adjust the exchange rate and shipping stipend for Amazon.co.uk. By default the script will use your base price multiplied by 2.0 for the exchange rate, then it will add $6.00 to the new price to help cover shipping. These amounts can be changed as desired.

  • Please ensure that "Send market-specific prices as is do not perform currency conversion?" is checked on the Settings page of your FillZ account if you will be using this script.
  • Your base price should be in US dollars, and Amazon.co.uk should expect your prices in UK pounds.
EXCHANGE_UK = 2.0;
SHIPPING_UK = 6.00;

price = item.basePrice;
if (marketplace == 'AmazonUK') {
 price = (price + SHIPPING_UK) / EXCHANGE_UK;
}

return price;
Personal tools