I'm working on a project with multiple products and prices. The client would like to offer prices in the currency requested by the user. We're going with Stripe and I can see from the docs that I can achieve this by creating separate prices for the products/currencies then handling the subscription logic with Cashier.
How would one manage the price of products following a change in exchange rates? Would I need to create a new set of prices based on the new exchange rate?
@moonfive You’ll need to create separate prices for each currency you support, yes.
Most subscription companies use local pricing. So for example Netflix, they have a price in the UK and a price in the US that aren’t based on exchange rates. If you want a price to update based on the exchange rates against a “base” currency then you’ll have to build that I’m afraid.