#bfitz_1992

1 messages · Page 1 of 1 (latest)

sour micaBOT
remote garnet
#

Is there a reason you need to set setup_future_usage: on_session? If the card is already setup for off_session future I think you're okay, but just to be safe I'd just set it as off_session always if you know it'll want to be used for future subscription renewals

neat viper
#

Ah the reason I'm setting setup_future_usage: on_session is because, if it's a new card, we still want to save that card to their Customer object in Stripe. But I read in the docs (https://stripe.com/docs/payments/payment-intents#future-usage) that setting off_session for payment intents raises the risk of the purchase being flagged by the bank. Does that make sense? Is that still a risk?

remote garnet
#

Are you talking about this sentence? You can still accept off-session payments with a card set up for on-session payments, but the bank is more likely to reject the off-session payment and require authentication from the cardholder.

neat viper
#

Yes

#

ohh wait did I misunderstand that sentence maybe?

remote garnet
#

Ah, so that's not referring to the purchase you're setting setup_future_usage on. It's saying that if you make a Payment Itnetn with setup_future_usage: on_session then you can attempt to use that Payment Method for future off-session payments (off_session: true) but that they might not work

neat viper
#

ohhhhh okay gotcha that makes much more sense. So you're right, sounds like I should just use setup_future_usage: off_session on the payment intent and that should be okay?

remote garnet
#

yup!

neat viper
#

okay great, thank you so much karbi!

remote garnet
#

👍