Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Stripe Coupon Durations and Subscription Billing Intervals

I'm trying to understand how Coupons work in Stripe, when applied to Subscriptions with different billing intervals, and the official docs are pretty unclear.

Stripe lets you create subscription plans that bill on different intervals (daily, monthly, yearly, weekly, every 3 months, every 6 months, or custom).

Subscriptions can (optionally) have trial periods, measured in days.

Stripe also lets you create coupons, which apply to those subscription plans for a certain duration (once, repeating, or forever). If you choose repeating, you can also pass a numeric duration_in_months parameter, which sets the duration of the discount.

Okay, so the confusing part of this is that subscriptions and coupons can have completely different intervals: I could create a subscription with a 25-day free trial, a weekly billing period, and a coupon with a duration of two months. If the customer applied the coupon on the 9th day of the trial, how many invoices would incorporate the discount?

How does the logic work for figuring out whether a coupon is still active?

like image 271
benjismith Avatar asked Jan 27 '16 04:01

benjismith


People also ask

Does Stripe offer recurring Billing?

Stripe Billing is the fastest way for your business to bill customers with subscriptions or invoices. Capture more revenue, support new products or business models, and accept recurring payments globally.

Can I use a 100% off coupon in checkout Stripe?

When using the Stripe Payments Plugin coupon codes can be created where the discount amount is 100%. This means that the customer will not need to pay for the product.


1 Answers

A coupon with a duration of 2 months would mean that the coupon will be applied to all invoices generated for that customer in the 2 months from when the coupon gets added to the customer.

like image 107
Matthew Arkin Avatar answered Oct 10 '22 21:10

Matthew Arkin