#desent.io
1 messages · Page 1 of 1 (latest)
Yes you are right. Destination charges are only supported if both your platform and the connected account are in the same region (for example, both in the US).
https://stripe.com/docs/connect/account-capabilities#india-international-payments there's also a special requirement for India merchants to accept international payments
Thank you @tranquil merlin! The connected account fullfills the special requirements.
Could you give me a suggestion on what would be the best way to let the germany company pay the indien company? Thank you!
https://stripe.com/docs/connect/account-capabilities#transfers-cross-border there's a cross-border transfers but it doesn't apply to your case (Germany -> India).
I'd suggest you to reach out to Stripe support https://support.stripe.com/contact/email and see if they have any other advices.
Find help and support for Stripe. Our support center provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.
@proven jacinth Do you know if Direct charges would work across borders?
await stripe.paymentIntents.create({
payment_method_types: ['card'],
amount: 1000,
currency: 'usd',
application_fee_amount: 200
}, {
stripe_account: '{{CONNECTED_STRIPE_ACCOUNT_ID}}',
});
If the connected account is in india?
Yes for Direct Charge it should work. But I recommend doing some tests in test mode to make sure it works as expected.