#cory.schwartz-go-pricingtable
1 messages · Page 1 of 1 (latest)
Hi 👋
The billing portal is actually pretty cool. You setup the parameters, and then you get a URL that you can redirect users to. Really cool.
The pricing table seems like it's not taht way
The emebddable pricing table (https://docs.stripe.com/payments/checkout/pricing-table) is pretty much entirely a front-end surface
So it doesn't have a type in the server-side SDKs
ah, okay. That helps. Thanks.
You can use it in conjunction with your server-side code by specifying the Customer ID https://docs.stripe.com/payments/checkout/pricing-table#customer-session
But that would just be returning the Customer Session client_secret in your HTML template
Thanks, I'll definitely do that. Gradually, I'm getting more familiar with stripe., it's good stuff.
Nice, I'm glad you like it.
When a customer uses the Pricing Table they will generate a Checkout Session that you can retrieve server-side to inspect the details.
Thanks.