#paulpayen
1 messages ยท Page 1 of 1 (latest)
๐ Thanks for reaching out
When using Stripe Checkout Session, you can take advantage of the automatic currency conversion.
This feature is still in Beta, you can register to it and try it ๐
https://stripe.com/docs/payments/checkout/present-local-currencies#automatically-convert-currencies
hey
thanks
what do you mean by BETA?
is it fully working in prod ?
I think this is not solving; The checkout solution you propose is for the first payment.
Yeah of course it's in prod. just it's private feature now
Here I am talking about the recuring payment of my subscription
Every month the amount should change because the currency rate will change.
Also I see that we are not using Stripe Checkout at all; We are using only API integration.
Ah, AFAIK, there is no such a feature for the recurring payments
but that's will be handled by bank conversions
Yeah there is that also
We can't account for that in non-Checkout integrations I'm afraid. As stated, there's a Checkout beta that handles automatic conversion for the presentment currency
with "checkout", in case of subscriptions, will the amount in the local currency change every month ?
Correct, the beta supports converting 10 USD to a handful of other currencies dependent on your customer location. But its in beta, so you should use the link my colleague shared
But I guess, the Checkout use a subcription method that I can also use with the API ?
You can create subscriptions with Checkout via mode: 'subscription', yep. It uses the same Products/Prices you'd model in your Dashboard
You create the Checkout Sessions via the API
OK ; Once session is created , What Should I do with it ? How to create payment Intent with it ?
You'd redirect your users to the the URL returned on creation. See: https://stripe.com/docs/payments/accept-a-payment?platform=web&ui=checkout
No need to create a Payment Intent - Checkout handles that when required