Ask HN: Is there a payment provider for monthly changing subscription rates?
1–4 of 4 posts
Re: Ask HN: Is there a payment provider for monthly changing subscription rates?
#2Re: Ask HN: Is there a payment provider for monthly changing subscription rates?
#3From the payment provider's point of view, you essentially have a free subscription with misc charges each month. So using Stripe, you would just sign up a user to your subscription plan which would have a $0 cost.
Then at the end of the month when you're reconciling the billing, you create a charge on each customer equal to NEW_LEAD_COST * COUNT
Re: Ask HN: Is there a payment provider for monthly changing subscription rates?
#4So the base subscription is free? And they're just paying when new leads are generated? From the payment provider's point of view, you essentially have a free subscription with misc charges each month. So using Stripe, you would just sign up a user to your subscription plan which would have a $0 cost. Then at the end of the month when you're reconciling the billing, you create a charge on each customer equal to NEW_L…