#Josu-checkout-transfer
1 messages · Page 1 of 1 (latest)
Hey, are you using separate charges and transfers? That's not really possible with Checkout currently
Hi,
Yes, what we want to do is generate a payment and have it made in Stripe, then in the webhook make a transfer to an Express account from the payment
it's possible?
Yeah, you could handle that in a webhook listening for the checkout.session.completed event
Does "source_transaction" => "{CHARGE_ID}" support Checkout Session Id?
No, you'd need to pass the underlying Payment Intent ID from the Session object: https://stripe.com/docs/api/checkout/sessions/object#checkout_session_object-payment_intent
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, it sounds great!
Thank you @fallen terrace 😊
Np!