#Pat-Kelly-subscriptions
1 messages ยท Page 1 of 1 (latest)
Hi ๐ Subscriptions would be a good fit for the recurring payments. You could create a Product, and then create an ad-hoc Price under that Product for each new Subscription:
https://stripe.com/docs/api/subscriptions/create#create_subscription-items-price_data
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Gotcha, is it possible to create this product type in the Dashboard? And if so, what pricing model would I select?
Oh wait, I see I can remove pricing model
Yup, you can create the product in the dashboard, and the pricing model is definied on a per-price basis. So you could have one product with a mixture of one-time and recurring prices (you'll want to use recurring for subscriptions).
How do I set it to be per-price basis?
The menu options for Pricing Model are Standard, Package, Graduated, and Volume
You don't have to do anything to set it to per-price. When you create a product in the dashboard the UI creates both a Product and a Price. Once you create the Product initially you can then go back and create as many additional prices as you would like.
Oh I see, so I would create a price for each customer?
Sure, if that's what fits your model.
Sounds good, thanks for the help
Any time!