Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Stripe - How to handle subscription with a free plan and no credit card required at sign up time

We started to implement Stripe on Redsmin (one of our project) and I think we may have missed something. Here is how it works:

  1. To use our product, the user must select a plan (free, s, m, xl, xxl...) then enter its login/password and is then good to go for a free 30 days trial. When the user submits the form, our server calls Stripe create_customer with the specified plan and no credit card (because we want to offer 30 days free with no credit card required) and we update the user model on our side with the returned customer_id and subscription_id.

  2. We set up a webhook to receive stripe events so after 30 days our webhook should receive a customer.subscription.updated event with a object.status == active. Am I right?

  3. However, since we did not specify an associated card for the user at sign up time, we should receive quickly after another customer.subscription.updated event with object.status == unpaid right? Then on our side we deactivate the user account and force it to go to our plan selection page.

  4. From then on the user is able to select either the free plan or one of our premium plan:

  5. #Scenario 1 If the user selects the free plan, we just reactivate its account on our side and do nothing else because we configured the free plan on stripe to cost 0$. Did we implemented the right process with our free plan? Are there better ways?

  6. #Scenario 2 If the user selects a premium plan, we redirect him to a credit card form, that will then be sent to Stripe, and we update the stripe customer account with the temporary card token. What should we do next ?:

    • Should we wait for stripe to send us an event? If so, what event? customer.subscription.updated? charge.succeeded? What will be the value of object.status then ?
    • Should we directly reactivate the user account on our side and wait for a confirmation from stripe? If so, what would be the event name and data we should wait for?

like image 681
FGRibreau Avatar asked Oct 19 '13 14:10

FGRibreau


People also ask

Do you need a credit card for Stripe?

Stripe allows you to accept payments from customers using credit cards, debit cards, and other popular payment methods.

Can you use Stripe for subscriptions?

Subscription objectsStripe Customer objects allow you to perform recurring charges for the same customer, and to track multiple charges. If you create subscriptions, the customer ID is passed to the subscription object. Your customer's payment instruments–how they pay for your service.

How do I add a trial period in Stripe?

If you'd like to add a trial period for a subscription, you can do so by using subscription_data to add a trial_period_days number. This number needs to be an integer and at least equal to 1. Overall, a subscription with a trial period of 2 weeks would be written this way: const session = await stripe.


1 Answers

In part 2 where you do this:

We set up a webhook to receive stripe events so after 30 days our webhook should receive a customer.subscription.updated event with a object.status == active am I right?

You might also consider implementing the customer.subscription.trial_will_end webhook, this webhook will be sent three days before the customers trial is going to end and will allow you to send the customer a notification to update their payment information.

This way if the user does decide to go and update their payment information, Stripe will be able to take payment as soon as the customers trial has ended and they will be able to continue using your service without interruption.

#Scenario 1 If the user select the free plan, we just reactivate its account on our side and do nothing else because we configured the free plan on stripe to cost 0$. Did we implemented the right process with our free plan? are there better ways?

As far as I know this is the best way of implementing free plans using Stripe, I would just probably make sure that customers weren't sent any invoices unless it was required. I doubt users would expect to receive an invoice for each billing period if they were using a free plan.

#Scenario 2 If the user select a premium plan, we redirect him to a credit card form, that will be then sent to Stripe, and we update the stripe customer account with the temporary card token. What should we do next?:

  • Should we wait for stripe to send us an event, if so, what event? customer.subscription.updated? charge.succeeded? What will be the value of object.status then?
  • Should we directly reactivate the user account on our side and wait for a confirmation from stripe? If so, what would be the event name and data we should wait for?

Once the user has selected a plan and updated their payment information I would activate their account straight away providing that the response to the subscription update from Stripe was successful.

As long as you have configured your subscription preferences from your Stripe dashboard you should be able to let Stripe handle what it will do if the payment fails. Just make sure you implement the customer.subscription.updated webhook as this will be the webhook that Stripe will send you if they mark a subscription as unpaid or cancelled allowing you to update your own records accordingly.

like image 164
Mike Avatar answered Sep 23 '22 03:09

Mike