#napolean_solo
1 messages · Page 1 of 1 (latest)
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.
- napolean-multicurrency-checkout, 2 days ago, 18 messages
- napolean_solo, 4 days ago, 4 messages
Stripe invoice only accepts the prices that are in the same currency
If the currency is different, it can't be added to the invoice
So how can I programmatically handle charging user based on their currency?
When an invoice is created, i am adding an invoiceItem but how can I charge users based on their currency if there are multi currency users?
Invoice doesn't support currency conversion. You can either:
- Create the price in customer's local currency; OR
- Create the invoice with
currencyof the invoice item and bill in the different currency
Can you elaborate on the 2nd?
Bill in a different currency?
For example, if the customer's default currency is in USD and invoice item is in EUR, you will create the invoice with currency as EUR: https://stripe.com/docs/api/invoices/create#create_invoice-currency
The invoice will be created in EUR instead of USD, and customer will be billed in EUR.
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Oh okay
It would have been much easier to add currency conversion in invoice item as well
Can you please pass this feedback if possible?
Can I suggest you writing to Support https://support.stripe.com/contact, so that they can share the feedback with relevant team?