#eamjr_api
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/1422267975192281148
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
Hi ๐
3DS shouldn't be required for in-person card transactions
Oh wait, I see the problem
We have a two step transasction. first step card inserted into terminal. $1 payment intent created to detemine type of card:credit/debit/prepaid. Then another payment intent is created for estimated charges using the original PM created in step one. That is the one causing problems. When we go to settle message is rquiuires_action.
In your second payment intent, you are passing setup_future_usage: "off_session"
That implies the customer is on-session and able to approve setting up this payment method
But you already set it up in the $1 payment intent previous to this
so you should not include that parameter
That is correct when we worked with accelrate group this method was suggested.
I think you misunderstood.
It is not for use when making payments without the customer present
In that case you would pass off_session: true instead. This tells us the customer is not interacting with your application and we request an exemption from additional authentication
So we need to change the api call on the second for the estimated total and inlude that flag as described?
Correct. For requests like this one: https://dashboard.stripe.com/logs/req_k3J0AShhUuWLtN
- Remove:
setup_future_usage: "off_session" - Add
off_session: true
We are modifying the code now and will test and move to prod. THANK YOU.