#Davaogoods-connect
1 messages ยท Page 1 of 1 (latest)
Hi there ๐ I'm having a little trouble following what you're referring to, could you provide additional details around the behavior that you're looking for information about?
just some clarification
This is the payment that went through
After the payment succeeded, I create a 2 transfers since this is for 2 items with 2 sellers
This is the first transfer
This is the second transfer
Can you copy and paste the ID of that Payment Intent here? That'll allow me to pull it up on my end. I'm also going to remove the payment screenshot in case that email address in it belongs to a real customer.
my question is that, does this transfer do not deduct from the main charge?
I thinks this is the Payment Intent Id
pi_3LfigkKhLpImRHOf1Gpv7Q1K
from the charge
If by "deduct from the main charge" you mean that the amount for the payment will decrease, then no that will not happen. But please let me know if that's not what you meant.
oh.. hold on
so basicly transfers is just payouts to other connect accounts for the purchase
the platform pays the sellers for the purchases ?
pays / transfers to the sellers account?
Transfers are the movement of funds from a platform Stripe account to a connected Stripe account.
this is exactly what I meant
so to clarify, funds from the platform are being sent over to a connected stripe account?
Correct.
Payments made to your platform increase the funds available in your platform's Stripe account balance, and then when you make a Transfer to a connected account the amount of the transfer is removed from your platform's balance.
Looking at your Transfer requests though, there is one more piece to make sure you're aware of. You're using the source_transaction parameter when creating the Transfer, which ties the processing of that Transfer to the processing of the specified Charge. So the Transfer won't be executed until the Charge settles to ensure the funds for the Transfer are available in your platform's balance.
This section talks about that in a bit more detail:
https://stripe.com/docs/connect/charges-transfers#transfer-availability
If it helps, this section also contains a graphic showing the funds flow when working with Separate Charges and Transfers:
https://stripe.com/docs/connect/charges-transfers#collecting-fees
ok got it, I think I am clarified
thank you
one more thing
do you know the link of the API for accounts where I can look up?
If you're looking to retrieve a list of your Connected Accounts, then you can use this endpoint:
https://stripe.com/docs/api/accounts/list
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.