#mckeemi
1 messages · Page 1 of 1 (latest)
future off-session payments get the exemption from 3D Secure if that card is set up. Creating a subscription is not off-session by default
you can pass https://stripe.com/docs/api/subscriptions/create#create_subscription-off_session if the subscription is being created off-session without the customer's involvement on a backend server
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
if it's not off-session, then you shouldn't be doing it this way at all, you should just create the Subscription with default_incomplete and confirm the PaymentIntent on the frontend
This is how I created the subscripton offsession set to true
whats's the ID of the sub_xxx ?
"sub_1NGfCpKSjo69sG6aJdOHTHJB"
I have both default-incomplete & offsession ... would that be an issue?
it's because you didn't pass off_session when you actually confirmed the PaymentIntent later
https://dashboard.stripe.com/test/logs/req_NxHDBRt6jR9o2r on that request. If you're doing it this way you need to pass https://stripe.com/docs/api/payment_intents/confirm#confirm_payment_intent-off_session (it doesn't persist as it's an option on a request, not a property of the objects)
That makes sense! Thank you so much, I will give that go, really appreciate the help