#Emily - Subscription
1 messages · Page 1 of 1 (latest)
Hi 👋
Could you describe how you see the relationship between the free and paid subscriptions? Is this a trial period or unlimited?
hi! anyone interacting with stripe would have access to the same information (paid stripe or free use stripe). they are essentially the same, but some users should not have to give a credit card...
some users will go a traditional route of entering a credit card and coupon code for timed free trial. we will require them to give credit card at signup so when they're trial expires, they start paying
our true "free users" will not interact with stripe at all
does that make sense?
Okay so Stripe's objects are designed around collecting funds so in the use case you describe I think the best approach would be to maintain your own records of the "Free" subscription and use that data to create a Stripe subscription if/when you convert them to paid users. Does that make sense for your use case?
it might!
want to confirm: there is not currently a workaround within stripe to avoid adding in a credit card upfront
it's ok if the answer is yes, just need to let my team know
I mean you can but the Subscription object will get set to "past due" and eventually canceled. So the best bet is to not use Stripe records until you are ready to collect payments.
thank you. this has been super helpful