#surya_06050
1 messages ยท Page 1 of 1 (latest)
Hi There
Hello ๐
want that the one payment made by your customer will be transferred to multiple connected accounts
I Used That Link https://stripe.com/docs/connect/separate-charges-and-transfers
Yep that is the flow for splitting payments like that
Are you stuck on part of that flow?
that account I Have Not Received Pending Amount How to Available the Amount are showing
Lifetime total volume $22.00 USD
Not showing
Total balance
$0.00 USD
Future payouts
$0.00 USD...
connect account Id acct_1NqZQsRUVYpGc1TH
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
const balance = await stripe.balance.retrieve({
stripeAccount: 'acct_1NqZQsRUVYpGc1TH',
}) Balance Checked
response are
{
object: 'balance',
available: [ { amount: 0, currency: 'usd', source_types: [Object] } ],
instant_available: [ { amount: 0, currency: 'usd', source_types: [Object] } ],
livemode: false,
pending: [ { amount: 0, currency: 'usd', source_types: [Object] } ]
}
Do you have the ID of the transfer(s) that you made to that account?
Oh and do you know if the funds landed or if they are still pending in general?
yes What to do !!
Can you send me the ID of that transfer? (tr_1234)
I am but the server is busy so there will be time between responses
hmm okay Please Update
why not showing
Total balance
$0.00 USD
Future payouts
$0.00 USD
**but showing On **
TOTAL VOLUME
Lifetime total volume
$22.00 USD
what to do
https://dashboard.stripe.com/test/connect/accounts/acct_1NqZQsRUVYpGc1TH/activity
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
check the Link
I'm going to have to pull in a colleague for this. I see the transaction and that the test funds have landed but I am not seeing them on either account
It looks like you are debiting the account for the amount that you are sending to them before you send them the money
So it zeroes out
Try this again but without the debit first
Which method I will use in API ?
Not sure what you mean by that
Taking a step back
You will just want to do these steps from your flow:
- Create a PaymentIntent
- Confirm the PaymentIntent
- Transfer captured funds to your connected account
I think that can help you see what the process looks like in general
2 min I Will reply
After confirm the PaymentIntent, which method is suitable for transfer the amount to our multiple connected accounts
@fast rampart
Not quite sure what you mean, can you tell me more about what you are trying to figure out?
After the payment you make Transfer calls to each connected account that you want to pay https://stripe.com/docs/api/transfers/create
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
I Try It and Update
Give Me Some Time
Thank You For Support , Working Fine
@fast rampart
Great to hear!