#JenniferJenna-subscription-setup
1 messages · Page 1 of 1 (latest)
elements
So you can confirm the first payment like so https://stripe.com/docs/billing/subscriptions/build-subscription?ui=elements#complete-payment
And after that succeeds you can set it as the default PaymentMethod for the subscription https://stripe.com/docs/billing/subscriptions/build-subscription?ui=elements#default-payment-method
Alternatively you can set the PaymentMethod as being the default for the Customer for all subscriptions via invoice_settings.default_payment_method
https://stripe.com/docs/api/customers/object#customer_object-invoice_settings-default_payment_method
So that first confirmed payment will be associated with the subscription as it's first invoice payment?
Not automatically, you need to make a modify call after on either the Subscription or Customer object.
So, I know I can set the default card on the Subscription or customer Invoice Settings, but it's the initial payment that I want applied/traceable to the new subscription. Is that satisfied with this flow?