#Giriraj

1 messages ยท Page 1 of 1 (latest)

buoyant voidBOT
topaz path
#

Immediately after a payment is made, the funds go in to your pending balance. Providing a source_transaction tells Stripe to wait to transfer funds to your connected account until the funds have fully landed on your platform account

#

You can transfer funds to them before then if you already have enough in your available balance but in that case you are floating the money from other payments until the funds from that specific payment comes in

echo bough
#

no, i m not specifyinh the payment intent.

#

let me follow your provided link. but how to get source_transaction ? @topaz path

topaz path
#

And you provide the ID of the payment intent that you just captured

echo bough
#

no, i can't use source_transaction. bcz that stripe connect account has multiple payment is received. so, i m sending sum of amount.

#

@topaz path

topaz path
#

In that case you can either:

  1. Make multiple transfers, one for each payment
  2. Wait for the balance to become available for all of your payments and make one big transfer then
echo bough
#

yes, i will go with point no.2. and i will set cron job it will run every 7 day.
but it's possible to send money to mulpile stripe connect account?

#

i think after 7 day it will give me same error then?

#

@topaz path is there any way to intant update balance in plaform?

topaz path
#

You can send money to multiple connected accounts. That is definitely a common use case.

#

Funds usually land quicker than 7 days. I will find our doc on fund availability

echo bough
#

hm ok

topaz path
#

Unfortunately you can't get the funds instantly. Stripe gives you the funds as soon as we receive them ourselves, this is more of a limit on how fast money can be sent in general

echo bough
#

hm correct. but i can't send money to muliple connected accounts. bcz every stripe connect account has different amount.

topaz path
#

You can send different amounts, the amount parameter is set per transfer

echo bough
#

oh ok got it what do you mean.

#

but how can i check which date i got balance on platform?

#

or where and which day i will get balance?

topaz path
echo bough
#

ok thanks @topaz path

#

if i any query will let you know.

topaz path
#

After the capture, the payment intent will have a latest_charge property (or a charges array in earlier API versions), that charge will have a balance_transaction property which will have that available_on property that I linked to earlier
https://stripe.com/docs/api/payment_intents/object#payment_intent_object-latest_charge
https://stripe.com/docs/api/charges/object#charge_object-balance_transaction
https://stripe.com/docs/api/balance_transactions/object#balance_transaction_object-available_on

echo bough
#

ok thank you

#

currently platform has withdrawn when balance is available. i think that i need to stop.
when i will transfer amount to stripe connect account that time i need to pay platform account. i think that way possible.

topaz path
#

Not sure what you mean unfortunately. With separate charges and transfers you pay yourself by not sending all of the money to the connected account. Instead of taking a fee, the platform keep the funds that are not sent away to connected accounts

echo bough
#

i mean when balance is available on platform that time automatically withdrwan to platform's bank account.

buoyant voidBOT
scarlet elk
#

Hi ๐Ÿ‘‹

I"m stepping in as @topaz path needs to go soon. So are you saying you want to stop the automatic payouts from your platform account so you retain a reserve balance in your Stripe account?

echo bough
#

yes

scarlet elk
echo bough
#

ok thank let me check