#shimmmaz
1 messages ยท Page 1 of 1 (latest)
You could look at Invoices as a solution if you need to use Prices and Invoices: https://stripe.com/docs/invoicing
@balmy notch @neon talon Should I use Invoices, or maybe instead Checkout sessions? https://stripe.com/docs/api/checkout/sessions
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Hi ๐
You can use a Checkout Session in payment mode to handle one-off payments linked to Price/Product records
I am trying to understand what the best route to take with this. Is there a place that explains clearly the difference between say Checkout Session in payment mode and invoices
Well Checkout does provide a way to link Product/Prices with Customers for one-time (or recurring) payments. It also provides a Stripe hosted UI to collect payment information: https://stripe.com/docs/payments/checkout
But if you wanted to control your own UI you could use Invoices to allow you to associate Price/Product records with Customers for one-tine payments: https://stripe.com/docs/invoicing/overview
Both topics are rather broad