#pulley
1 messages · Page 1 of 1 (latest)
Yeah I'd just create 2 separate prices: 1 for the first seat at $20 and another for the $x price
Then just have separate subscription items for each price
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Hey there
im not sure i am following you.
What i am wondering is, i have a product that i am seeling in quantities of 20 or more, and i want the base price on stripe to start at a quantity of 20, is this possible
Yeah
So you'd have 2 subscription items
The first would be $20 with a quantity of 1
Then if the customer wants to increase quantity, you'd add a second subscription item with the $x price and adjust its quantity depending on how many seats the customer needs
i guess im confused on what you are making a quantity of 1 for 20$ that looks like
quantity x price
1 x 20
What i am wanting is
20 x (random price)
Where the subscription item has a min quantity of 20 seats
Maybe i am missing what your saying haha.
Oh I misunderstood what you meant
I thought you wanted $20 not 20 as a quantity
Yeah that's possible but different integration path. One sec
Will the price per quantity change past the initial quantity of 20?
i dont think
so each seat will be like 25$, any additional seat added will also be the same price
Oh then that's actually really simple to implement then. When you create the subscription just set quantity to 20: https://stripe.com/docs/api/subscriptions/create#create_subscription-items-quantity to start. Then when your customer increases their seats, you can make an api request to update the subscription and bump that quantity param: https://stripe.com/docs/api/subscriptions/update#update_subscription-items-quantity
So your saying make a product with a price that is standard price, and on our front end set what is displayed to the user starting at 20.
makes sense, i appriciate it! Thanks for talking with me