#tobewisebeforeiamold_code
1 messages · Page 1 of 1 (latest)
👋 Welcome to your new thread!
⏲️ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
⏱️ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
🔗 This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1486382347124474027
📝 Have more to share? Add more details, code, screenshots, videos, etc. below.
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.
- wise_paymentintent-currency, 5 days ago, 21 messages
The flow is like this:
- setup_intent to be able to pay a CAD payment_intent
- Later, try to use the same payment_method to pay a USD payment_intent
- All to avoid listing PADs twice on our "wallet" page as the customers payment methods
hi there, do you have an example request ID for a payment that failed?
Well, I have the setup_intent I tried to use: seti_1TEt4ADYgrK1cJzVNO3OHe5o. let me dig up the request ID
Here's an event ID: evt_1TEt4PDYgrK1cJzVh28B5Zmn Does that help?
ah ok, so the setup fails even before you attempt to use the payment method for payment. that does help, let me look into that
Thanks!
It looks like if I'm trying to set up a setup_intent to allow for future payments, and it's PADs, I'll need two payment_methods: one for usd and one for cad, is that right? Is there any way to create one in cad that will auto-convert usd payment_intent payments to cad?
In case it helps, I'm using @stripe/react-stripe-js in teh front-end to give me the payment methods
- so that event was thrown by this failing request, setting currency as usd: https://dashboard.stripe.com/acct_1JsJtWDYgrK1cJzV/test/logs/req_zoQIWQOzzpmiTR
- the request was passing a previously setup payment method pm_1TEt4MDYgrK1cJzVDO0roAiT, which was originally created by this request that established its currency as cad
so in that specific instance, the failure occurred because of a currency mismatch between the two. I see what you're trying to do, but I don't believe it's currently possible to have one ACSS payment method that's guaranteed to work with both CAD and USD. we call this out a bit in the docs, where it seems to depend on the currency in the customer's account https://docs.stripe.com/payments/acss-debit#presentment-currency
see also this section in our docs about setting up ACSS for future use
Thanks! We don't use checkout sessions unfortunately. But I get your meaning.
Thanks for your help this morning!