#bhanu365-currency-conversion

1 messages ยท Page 1 of 1 (latest)

regal cragBOT
tiny topaz
#

Hi ๐Ÿ‘‹ no, as far as I'm aware those fees are only represented in the currency that the fee was processed in. If you would like to convert that to another currency, then you will need to handle that conversion.

Are you currently looking at the Balance Transaction objects to review the Stripe fees? Those also have an exchange_rate field that I believe may be populated here if we did a currency conversion to represent the rate that we used for that.
https://stripe.com/docs/api/balance_transactions/object#balance_transaction_object-exchange_rate

smoky prism
#

But if we handle the stripe fee conversion on our end so it will fluctuate according to the market rate and as I know the stripe is converting currency conversion mid of the market rate then how we can handle it
2. Yes, exchange_rate will be deducted also and this is also getting in the connected account currenncy and this is also we need in user paid currency

tiny topaz
#

Can you share an example of a Balance Transaction you're looking at?

smoky prism
#

As you can see in the screenshot there are all amount comes in GBP like the stripe_fee, exchange_rate but the user has paid in USD so when I am doing partial refund so I need the stripe_fee, exchange_rate in USD instead of GBP is this possible?

tiny topaz
#

The exchange_rate value is the exchange rate that we used, it is a number and is not represented in a currency.

You should be able to divide the fee by the exchange_rate to convert the fee to match the presentment currency you used.

#

bhanu365-currency-conversion

smoky prism
#

Ahh I see let me try it