#Scott - create checkout session
1 messages · Page 1 of 1 (latest)
if you select "payment" you can use a paymentintent: https://stripe.com/docs/api/checkout/sessions/create#create_checkout_session-mode
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Okay and how can I set that to a manual capture? because I need to adjust the fees amount on my server side depending on the card origin
Can do that here: https://stripe.com/docs/api/checkout/sessions/create#create_checkout_session-payment_intent_data-capture_method
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
I Use PaymentIntentAmountCapturableUpdated webhook for this
Ah brilliant!
Thank you ❤️
No problem!
This will also fire the PaymentIntentAmountCapturableUpdated event?
Yes it should. You can test this out in test mode
I will indeed, thank you
No problem!