#Pablo Araujo
1 messages · Page 1 of 1 (latest)
Hi there. What can we help you with?
how can we skip it? since we are telling that the future usage is off_session
also in the stripe dashboard I see in the first payment intent that says This payment successfully set up pm_1M59doCLzoWs17xtEp5Og3eW for future off-session payments
Can you provide the payment intent id where 3ds was required again?
pi_3M59huCLzoWs17xt1gip2gBS
Oh it's because it's an on-session payment
The 3155 test card will still require authentication for future on-session payments
Also since you already set up the card for future usage, you shouldn't pass setup_future_usage again
how can I differentiate the an on-session or not?
for testing proposes I use the 3155 card in the test mode, but is already happening in production
what would be the procedure for avoid that the SCA is triggered again in the next payment_intents?
This param: https://stripe.com/docs/api/payment_intents/create#create_payment_intent-setup_future_usage
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
You would set it to on_session if you intend for your customers to pay in the future when they're in your checkout flow
Will they be in the checkout flow when you try to process payments in the future?
no, they will not be in the checkout in the future
so the procedure will be:
- first payment intent will have the
setup_future_usage=off_session
- second payment intent will contain the previoys payment method and it won't provide the
setup_future_usage
rigth?
ok
I just did that and it is requiring the SCA
this is the payment intent pi_3M5AdGCLzoWs17xt0HOnpD4l
I'm using the payment method pm_1M59doCLzoWs17xtEp5Og3eW
but I did another test with the same payment method:
"currency": "eur",
"payment_method": "pm_1M59doCLzoWs17xtEp5Og3eW",
"off_session": "true",
"confirm": "true",
"amount": "2000",
"customer": "cus_MonEylTASxQBdd"
}```
and this time it worked
the, do I have to create and confirm the payment intent in only one step?
Sorry I dropped this. Have been juggling many threads. I'm looking now
Hello! I'm taking over and catching up...