#ChordOnCode
1 messages · Page 1 of 1 (latest)
If you use Checkout Session with Direct Charges, you don't have to use Payment Intent API. You can use Checkout Session API directly with the guide here: https://stripe.com/docs/payments/accept-a-payment?platform=web&ui=checkout
The only difference is that you'd need to include Stripe-Account header in the Checkout Session request, so that the payment will be in Direct Charges on the connected account: https://stripe.com/docs/api/connected_accounts
You may set payment_intent_data.application_fee_amount to collect the application fee.
super thanks!