#briz
1 messages · Page 1 of 1 (latest)
Hi! Let me help you with this.
The point of quotes is not to charge the customer before it's accepted. Otherwise, you can just use Subscriptions: https://stripe.com/docs/billing/subscriptions/build-subscriptions
Understood.
Let's say a potential customer selects a pricing plan. Without creating a quote, how do I get the price amounts (subtotal, tax, discount, total) for the expected subscription? I want to get the price amounts so they can be displayed to the customer before they decide to buy the subscription.
If you follow the guide, you will create a Subscription, and then ask the Customer to provide payment method information, at this time you can display the amounts: https://stripe.com/docs/billing/subscriptions/build-subscriptions?ui=elements#collect-payment
It's even easier if you use the hosted Checkout page: https://stripe.com/docs/billing/subscriptions/build-subscriptions?ui=checkout
Ohhh, interesting. I was under the incorrect impression that a subscription should only be created once the customer has definitely decided to purchase. I'll have to think a bit about how to approach integrating this.
Thank you!