#AGILE FALCON
1 messages · Page 1 of 1 (latest)
to load money in connect account through connect account's external bank account
what's the end purpose here?
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
you can transfer from one connected account to another
you can only have transactions between Platform and Connect accounts
connect accounts can payout to their external banks?
they will get paid out to their external bank account correct
There are specific cases where you can debit your Connect Account https://stripe.com/docs/connect/account-debits and then create a transfer to another Connect Account
which gives you the ability to send money (indirectly) between 2 connected accounts
ok... So far i was able to load money in connect account:
- by creating paymnet intent
- by confirming payment intent. (returned with latest_charge)
- Then i transferred that money in one of the connect account using source_transaction:latest_charge (even when funds were in pending in platform).
- Is there any way to transfer funds without source_transaction when balance in stripe main account is still in pending?
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 usesource_transactionso you don't have to face issues with balance availability
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?
no
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
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.
let's forget for a second about the code
would you mind trying to explain with a simple example what is your use-case
this
This is not the full use-case........i have given this task right now.....
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.
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
i've asked Project manager about the scope
let me know if you need any more help
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.
I'm not really sure I follow