Hi. I am trying to integrate the buttons and have a GBP merchant account. I dpecify an amount: x and currency:'GBP' in an order: createOrder: function(data, actions) { return actions.order.create({ purchase_units: [{ amount: { value: app.submissionData["total_cost"], country: 'GB', currency: 'GBP' } }] }); The amount is then converted as though from USD - not what I want! I have spent several hours perusing the docs (when I eventually found them) but there is no explanation.
... View more