#Anubhav Anand-in-transfer
1 messages ยท Page 1 of 1 (latest)
Hey, you can't do transfer like that with Connect if you're an Indian platform: https://support.stripe.com/questions/stripe-india-support-for-marketplaces
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.
Sir It is done through dashboard but not through transfer API.
Can you share an example of a successful transfer?
Sir I can share the screenshot with you.
Can you share an ID? tr_xxx
I'm not too sure. The only differences I can see is the source_type parameter on the Dashboard request that succeeded and the API version: https://dashboard.stripe.com/test/logs/req_DqxAOYNFiUhrxo
Yes, but not on the request you made via the API
$res = $stripe->transfers->create([
'amount' => 300,
'currency' => 'inr',
'destination' => 'acct_1KfeVPSBLiPP6U35'
]);
Sir if i use this api, then i get the same result
// Create a PaymentIntent:
$paymentIntent = \Stripe\PaymentIntent::create([
'amount' => 10000,
'currency' => 'inr',
'payment_method_types' => ['card'],
'transfer_group' => '{ORDER10}',
]);
// Create a Transfer to a connected account (later):
$transfer = \Stripe\Transfer::create([
'amount' => 7000,
'currency' => 'inr',
'destination' => '{{CONNECTED_STRIPE_ACCOUNT_ID}}',
'transfer_group' => '{ORDER10}',
]);
Can you try and add the source_type parameter to your API call
sure sir but do you mean 'source_type'=>'card' ?
Yep
ok sir
But again, I don't expect this to work for reasons I outlined earlier. I'm not sure why it works via the Dashboard
yes sir it's not working
sir what should i do to test the transfer from my platform account (India) to connected account in USA ? In that case, error "Account debits are not supported from US to IN".
Yep, you can't do cross-border transfers:
Stripe supports separate charges and transfers in the following regions: Australia, Brazil, Canada, Europe, Japan, Malaysia, New Zealand, Singapore, and the US. Separate charges and transfers are supported if both your platform and the connected account are in the same region (for example, both in Australia). For cross-region support, see the cross-border transfers docs.
https://stripe.com/docs/connect/charges-transfers
Sir ! do you mean transfer would be supported if both my platform and the connected account are in the same region for the countries(Australia, Brazil, Canada, Europe, Japan, Malaysia, New Zealand, Singapore, and the US) ?
not for India ?
Hello ๐ jumping in as my teammate needed to step away. Yes, that is my understanding.
Thanks sir, will try
๐