Reputation: 8376
I want to set up a multiparty payment system within my app where someone creates an "event", sets the price for tickets for it, and then gets paid for those sales, minus my platform's fee.
I plan on using Stripe for this. However, users can be in different countries and should be able to see the price of the ticket in their own currency. As far as I'm aware, Stripe converts the currency in the payment checkout. However, I need to display that price within my app before the user gets there. How can I do that?
Upvotes: 0
Views: 828
Reputation: 921
Currently Stripe doesn’t automatically convert currency at checkout. If you want to support multiple currencies for your product, then you can create multiple prices in different currencies for the product and pick the right price to use based on the user’s locale.
Beyond that, if price conversion at checkout is something that’d be useful for you, it might even be worth it to contact Stripe’s support to let them know.
Upvotes: 1