#Anubhav Anand-in-transfer

1 messages ยท Page 1 of 1 (latest)

blissful hamlet
zealous nymph
#

Sir It is done through dashboard but not through transfer API.

blissful hamlet
#

Can you share an example of a successful transfer?

zealous nymph
#

Sir I can share the screenshot with you.

blissful hamlet
#

Can you share an ID? tr_xxx

zealous nymph
#

Trnsaction ID- tr_1Khtg6CxsoTElNJesDgkUJIq

blissful hamlet
zealous nymph
#

source_type is card

blissful hamlet
#

Yes, but not on the request you made via the API

zealous nymph
#

$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}',
]);

blissful hamlet
#

Can you try and add the source_type parameter to your API call

zealous nymph
#

sure sir but do you mean 'source_type'=>'card' ?

blissful hamlet
#

Yep

zealous nymph
#

ok sir

blissful hamlet
#

But again, I don't expect this to work for reasons I outlined earlier. I'm not sure why it works via the Dashboard

zealous nymph
#

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".

blissful hamlet
#

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

With Connect, you can make charges on your platform account on behalf of connected accounts, perform transfers separately, and retain funds in the process.

zealous nymph
#

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 ?

orchid drift
#

Hello ๐Ÿ‘‹ jumping in as my teammate needed to step away. Yes, that is my understanding.

zealous nymph
#

Thanks sir, will try

orchid drift
#

๐Ÿ‘