Need some help to implement a suscription model

aaazz97

Junior Member
Joined
Aug 18, 2019
Messages
125
Reaction score
73
Hi there, I plan to monetize some assets with a suscription. However, I want to do it little bit different.
The monthly fee would start at 1$ and double each 10 users.
Can I do that with Stripe ? Or have I to update mannually the monthly price ?
 
When you sign someone up to a subscription you cannot just change the price when you want. You have to give them notification and the option to unsubscribe.

So you will not be able to legally do what you want, which means you will not be able to do it with any off the shelf solution. You would have to custom code it, but i suspect your cc processor will ban you if you do without following legal protocols.
 
When you sign someone up to a subscription you cannot just change the price when you want. You have to give them notification and the option to unsubscribe.

So you will not be able to legally do what you want, which means you will not be able to do it with any off the shelf solution. You would have to custom code it, but i suspect your cc processor will ban you if you do without following legal protocols.
thanks for your reply but I didn't explain it well.
In fact, I want this situation to happen :
- user 1 to user 10 will pay $1
- user 11 to user 19 will pay $2 whereas the firt 10 users will be on the $1 suscription
 
What you are asking to do can very easily be implemented using PHP and the stripe API:

Loop:
IF subscribtion created:
Subscriptions +1

IF subscriptions > 10:
Price = 2

IF subscriptions > 20:
Price = 3
 
Back
Top