#ahmad-naeem_code

1 messages ¡ Page 1 of 1 (latest)

autumn mistBOT
#

👋 Welcome to your new thread!

⏲️ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.

⏱️ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.

🔗 This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1233347816567476254

📝 Have more to share? Add more details, code, screenshots, videos, etc. below.

royal gyroBOT
#

Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.

fierce robin
#

hi there!

#

so you are manually transfering the money to the connected account?

pastel willow
#

we have one cart with multiple products from multiple vendors, so after successful transaction we have to make transfer to relevant connected accounts ? i want to know if this is correct way of doing it as we are transfering money to connected account which is still not available in our account balace

fierce robin
#

got it. what type of connected account are you using? Standard, Express, Custom?

pastel willow
#

express

fierce robin
pastel willow
#

is there any other way of doing it, we only transfer money to connected account when it becomes available in available balance of stripe account

#

what is most correct way of doing it ?

#

i know you much be very busy sorry if i'm asking to many question

#

*must

fierce robin
#

correct way of doing what exactly? the transfer? the refund? the account debit?

pastel willow
#

the transfer to connected accouts

fierce robin
#

when using connect there are 3 ways to send money to the connected account:

  • Direct Charge
  • Desitnation Charge
  • Separate Charges & Transfers (that's what you are currently doing)
    if you want to learn more about the different options: https://stripe.com/docs/connect/charges
pastel willow
#

do destination charge or direct charge allow us to transfer money to multiple vendors after checkout session ?

fierce robin
#

no, it would be to a single account.

#

if you need to send to multiple connected account, then yes you have to use Separate Charges & Transfers

pastel willow
#

yes, we have one way of doing it listining to checkout_session_completed hook and then using source transaction method, which i see is that it transfer money to connected account without making sure that blance in available in the platform, i'm thinking of something we make the transfers to connected account when that relevant payment arrive into our platform balance

fierce robin
#

yes, we have one way of doing it listining to checkout_session_completed hook and then using source transaction method, which i see is that it transfer money to connected account without making sure that blance in available in the platform
yes that's correct!

#

i'm thinking of something we make the transfers to connected account when that relevant payment arrive into our platform balance
you could, but by using source_transaction Stripe is doing this for you automatically

pastel willow
#

i worried what if that transaction does not arrive in our available balance for some reason if that could be the case ?

fierce robin
#

so the transfer will only happen after you receive the funds

#

or you can save the card with a SetupIntent, and then later try to charge the card for any amount. but note that the payment may fail (not enough founds, 3DS requested, etc.)

pastel willow
#

okay one more question, incase that transaction arrive to fail in our available balance which event it will trigger to that we ask for refund to relevant vendors and how would ask for refund ?