#weicodes
1 messages · Page 1 of 1 (latest)
Hi there, sorry for the delay! I see the subscription that failed uses a library that is not Stripe's official .NET library: https://github.com/jaymedavis/stripe.net
If your goal is to create a subscription for this customer using one of their saved payment methods and not have them re-authenticate, you'll want to create a Subscription and pass off_session: true: https://stripe.com/docs/api/subscriptions/create#create_subscription-off_session
I also see you're using a very old version of the Stripe API (from 2015), which uses an older way of creating subscriptions for a customer (using a POST call on the customer resource instead of a POST call on the subscriptions resource)