#AGILE FALCON

1 messages · Page 1 of 1 (latest)

quiet plinthBOT
daring drift
#

👋 happy to help

#

what are you trying to achieve exactly?

royal urchin
#

to load money in connect account through connect account's external bank account

daring drift
#

what's the end purpose here?

royal urchin
#

Payment Processing

#

i want to send money from connect account to another connect account within same stripe account......and each connect account will payout to their external bank account

daring drift
#

you can transfer from one connected account to another

#

you can only have transactions between Platform and Connect accounts

royal urchin
#

connect accounts can payout to their external banks?

daring drift
#

they will get paid out to their external bank account correct

#

which gives you the ability to send money (indirectly) between 2 connected accounts

royal urchin
#

ok... So far i was able to load money in connect account:

  1. by creating paymnet intent
  2. by confirming payment intent. (returned with latest_charge)
  3. Then i transferred that money in one of the connect account using source_transaction:latest_charge (even when funds were in pending in platform).
  4. Is there any way to transfer funds without source_transaction when balance in stripe main account is still in pending?
daring drift
#

Is there any way to transfer funds without source_transaction when balance in stripe main account is still in pending?
it's better though to use source_transaction so you don't have to face issues with balance availability

royal urchin
#

ok... as mentioned above......while confirming payment intent....we provide test card number... can i use connect_account balance instead of that card number?

#

so that i will be given latest_charge property.....which i will then use in transfer to another connect account?

#

Here i want to pay from one connect account.. is that possilble?

daring drift
#

that's not possible

#

as I explained the only way for 2 connect accounts to have any money flow should be done through the Platform

royal urchin
#

after transferring to platform account from Connect Account A.. how can i keep track of this transaction? so that i can send the same amount to another Connect Account B.

daring drift
#

let's forget for a second about the code

#

would you mind trying to explain with a simple example what is your use-case

royal urchin
#

This is not the full use-case........i have given this task right now.....

daring drift
#

please use a concrete example with numbers

#

who pays what and who gets what

royal urchin
#

For Example there is a Software house.. which have many clients......Each client will have a connect account.. and they will send money to each other using Stripe.

daring drift
#

that use-case isn't possible in Stripe

#

what can be done with Stripe is one of the following:

  • Each "client" is associated with a Customer and a Connect Account
    the Customer Object holds the payment method and the Connect Account hold the payout account
    when the Client X is paying Y, you'll use the customer associated with X to pay the Connect Account Y
    when the Client Y is paying X, you'll use the customer associated with Y to pay the Connect Account X
#
  • Client X wants is paying Y, as the platform you debit the Account of X and transfer the money to Y
#

but the problem with the latter option is that there is no payment "funding" the Connect Account in the first place

royal urchin
#

i've asked Project manager about the scope

daring drift
#

let me know if you need any more help

royal urchin
#

I am a project manager assigned with implementation of stripe connect functionality I want to sent money to a central wallet and then i have to send moneny from 1 user to stripe connect account, it will then send money from central wallet to 2nd user.

daring drift
#

I'm not really sure I follow