#akash.bhaskar

1 messages · Page 1 of 1 (latest)

full gullBOT
#

Hello! We'll be with you shortly. Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.

pseudo onyx
#

hi, what's the question exactly?

cold kindle
#

i want to make a payment of 100$ but i am using an indian card,,so how can i get the stripe fees

pseudo onyx
cold kindle
#

this is helpful, but before creating the payment intent.. want to know the stripe fees for a given payment method

pseudo onyx
#

our pricing is on on our website; you can write code to estimate what the fee will be based on that; and you can use test mode to test that code and confirm it calculates accurate values.

cold kindle
#

but i cant find it..pls send me the link

pseudo onyx
#

the link for what exactly?

cold kindle
#

pricing on the website

cold kindle
#

but its showing like this

pseudo onyx
#

yes. What's the question?

cold kindle
#

actually, my project has users worldwide and the payment currency is in usd..so if i use international cards..how can i display the stripe fees.?

pseudo onyx
#

how can i display the stripe fees.?
I believe I've answered that above. Did you have any other more specific questions or doubts I can clarify?

#

I can try to clarify or help but you need to show me some code you're written yourself, what you've tried so far and the specific problems you've run into.

cold kindle
#

one sec

#

const total =
(parseFloat(sum.total_amount) + parseFloat(rounded_platform_fees) + 0.3) / (1 - 0.029);
const project_total = total.toFixed(2);

to my understanding..0.3 and 0.029 are used for calculating stripe fees for us payments with us cards...so i want to change it for non us cards

pseudo onyx
#

That code assumes the fee is something like 2.9% + $0.30. Those are the fees for Stripe accounts located in countries like the US. (https://stripe.com/us/pricing)

If your Stripe account is located in India then it uses the fee structure on the page linked above, not that one.

cold kindle
#

no, my stripe account is in us..but i need to pay with indian or non us cards also

pseudo onyx