#razvi073
1 messages · Page 1 of 1 (latest)
I am using stripe.js in node in order to retrieve a list of prices for a product in various currencies and i need to displayed said prices for each currency in their localised currency format. (ex. for: ammount: 500, currency: 'usd' i neet to get '$5.00 USD', and for: ammount: 1250, currency: 'jpy' i neet to get '¥1250')
Got it. Then no there's not property for this on the Price object. That's somehting that you'll have to do on your end.
At least something that returns the currency symbol ($, ¥)?
You can find all attributes here: https://stripe.com/docs/api/prices/object
There's no currency symbol, only currency
Got it, thank you