#shimmmaz
1 messages · Page 1 of 1 (latest)
You can definitely charge different prices on the same product. Quick quesiton: how are you charging users here? Are you using our stripe hosted checkout pages or are you using your own custom page?
I will probably charge with a checkout session. But I can also charge on my own custom page.
Thank you for the quick response
@worldly brook How do I send clients different prices on a product?
With Checkout you can define prices per session: https://stripe.com/docs/api/checkout/sessions/create?lang=node#create_checkout_session-line_items-price_data-unit_amount
You would provide the product ID and data on how often the subscription recurs and that will generate. monthly subscription for that product at that price https://stripe.com/docs/api/checkout/sessions/create?lang=node#create_checkout_session-line_items-price_data-recurring-interval
@median nebula Apologies on the delay
Thanks. This is basically the idea of inline prices as discussed here, right? https://stripe.com/docs/products-prices/pricing-models#inline-pricing
Exactly
Thanks! @worldly brook