#DevilzLettuce-sub-subscriptions
1 messages · Page 1 of 1 (latest)
When you say sub-subscriptions, what do you mean? You could create new subscriptions that your customers' customers can use, but you would have to build out a way for your customers to manage their customer's subscriptions.
Hard to answer without more details though
Let me rephrase, say a business purchases lifetime access to my app for say , access to 100 accounts for them to allow their employees to use, is there a way to give them 100 subscription tokens
What do you want to have happen with the Subscriptions? Would the 100 accounts be charged still?
It would be a yearly payment from the business and the 100 accounts would be included in that subscription , so no extra charge but I want to limit them to 100 accounts. The numbers are hypothetical.
Pretty much the business paying for 100 subscriptions at a fixed price but what I’d like is for each of their employees to have to sign up for an account but use an access code (stripe token) in order to use the premium service
You could use Promotion Codes to accomplish this if you don't want to go the Connect route (e.g. onboarding businesses and being B2B): https://stripe.com/docs/billing/subscriptions/coupons#promotion-codes
You would just set max_redemptions to 100 (or whatever number of accounts there are): https://stripe.com/docs/api/promotion_codes/create#create_promotion_code-max_redemptions
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Beautiful! Thank you so much for your help!