#billwill

1 messages · Page 1 of 1 (latest)

slate pathBOT
radiant garden
#

How are you adding these prices? Are you getting an error somewhere saying that there is a limit or 2?

celest needle
#

Is that what you mean?

radiant garden
#

Yes thank you. It sounds like you may need to separate these two prices by Product.

#

When you say tiers, are these something like "Silver" and "Gold" plans where one gives higher or better access than the other one?

#

In Stripe Products are meant to separate different things being sold and that includes distinctions like Standard vs Premium plans. Prices are only meant to differentiate ways to charge for the same thing. Eg: a monthly price vs a yearly price for a Premium plan

celest needle
#

it is technically the same product, we are just offering an incentive for users to increase their subscription amount. If this approach would achieve the same end result that works for me though.

radiant garden
#

Taking a step back, can you give a rough idea how you want to charge for this product? As the amount goes up how should the pricing change?

celest needle
#

Yeah so when the user signs we programattically launch a checkout session with the users inputted quantity. We added some if statements in the checkout session request to determine the price to assign based on that qauntity.

Then on the account management side the user has a link to the customer billing portal where the should be able to cancel, or update their subscription.

We are also using events to trigger actions in the app based on subscription status.

As far as how pricing should change here is the rough idea
// if less then 3 locations price is $150
// if between 3 - 4 locations price is $130
// if between 5-9 locations price is $115

on a side note: past 10 locations we want to offer custom pricing, I am not sure how that is going to look yet.

radiant garden
#

Thank you for the clarification. And are those total prices or per-seat prices? As in if I have 2 locations, will I be charged $150 or $300?

celest needle
#

per seat

radiant garden
#

And the Customer Portal supports tiered pricing, so you can just include the one price and the portal will take care of the price for the quantity that they choose

#

Otherwise the best way forward would be to do separate products but tiered pricing is probably more straightforward and less code for you to write

celest needle
#

awesome.

#

thanks for your help!