#srn - Subscriptions + Eleemnts
1 messages · Page 1 of 1 (latest)
Hello! It depends on your flow and what exactly you're doing. Can you provide more details?
I am using stripe connect with standard account and direct charges. Buyers can subscribe to third party merchants.
Each merchant will have 1 product with multiple prices (monthly, annual plans etc.)
- if a checkout flow doesn't complete, should i reuse the same subscription object between buyer and merchant? 2) if a subscription is paid for, and later canceled, do i reuse the same subscription object if the buyer wants to resume?
For #1, that depends on what you mean by "doesn't complete".
the buyer starts the payment process but doesn't enter credit card info or payment doesnt succeed
For #2, generally speaking no, you would create a new Subscription. See here for details: https://stripe.com/docs/billing/subscriptions/cancel#reactivating-canceled-subscriptions
Right, but then what happens? What series of events would lead you to potentially using the existing Subscription, and how much time passes?
the buyer restarts the checkout/payment flow. it can be at any indeterminate time in the future
You should create a new Subscription in that case.
ok, so to summarize for each payment flow that is started, i should be creating a new subscription?
is this also the case with a customer object? or should that be reused for the same buyer?
You should probably reuse the Customer objects.