#alvin_63959
1 messages · Page 1 of 1 (latest)
I have a scenario which customer cancels the subscription and I understand stripe cannot reactivate it but can I recreate the details of customer's subscripion and card details that used to create the subscription in stripe?
The Payment Method is stored on the Customer object, so you don't need to recreate that part.
so I just need to create a new subscription then?
Yes, with the attached Subscription.customer. You will also need to either set Subscription.payment_method when creating the Subscription to the Customer's attached Payment Method ID, or update Customer.invoice_settings.default_payment_method to set it as default for all Subscriptions: https://docs.stripe.com/api/customers/update#update_customer-invoice_settings-default_payment_method