#Emily Walker
1 messages · Page 1 of 1 (latest)
- Depends what you mean by booking process? What are you migrating from?
- I don't understand, can you share a documentation link for what it is you're integrating
Sorry trying to get my head around it all. So we use Stripe checkout as a payment gateway for a regsitartion site, The client needs to provide me with the following API settings: Stripe Checkout Payment
The registrants will be redirected to the Stripe website to enter their credit card details
The Secret Key can be found under Developers > API keys > Standard key. You will be required to reveal the key token.
The Publishable Key can be found under Developers > API keys > Publishable key.
Check Capture Billing Address on Checkout Page to collect Billing Address on Checkout Page.
Tokenize For Subscriptions - Check this to tokenize the card details for recurring payments.
Generate Stripe Invoice - Check this to send Invoice item to Stripe.
Tax Rate ID - ID of the Tax Rate from Stripe that will be added to the Invoice Line Item.
Ok, so you're creating Checkout Sessions directly: https://stripe.com/docs/payments/checkout
So the client needs to set up a checkout sessions dedicated to taking the event payments?
Currently on their stripe account, they use the invoice payment links which of course are customised to the item they are purchasing. When you use an API integration, will my system feed into stripe the payment amount for the guest to pay?
I'd recommend reading: https://stripe.com/docs/payments/checkout/how-checkout-works
Hopefully that will answer your questions. I can answer any specifics
Thanks let me have a read
Thank you this was really helpful to read so the server creates the checkout session which enabels them to make their payment in strip checkout and be sent back to the site after.
Yes, you create a session and in that API response there is a url field. You redirect your customer to that URL where they can complete the payment. There's a demo here: https://checkout.stripe.dev/
Preview some of the features available in our prebuilt, hosted payment page.