#hugo-tessera_webhooks
1 messages ยท Page 1 of 1 (latest)
๐ 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/1245614800659284000
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
Transfer API only transfers funds from Stripe's platform account to Stripe's connected account.
I would like to notify my client that the money reach his account when the transfer is successful.
Which "account" are you referring here? Is it Stripe's connected account, or client's bank account?
I am referring to my client Stripe connected account (not his bank account)
Bascially I want to keep track of the status of the transfer from my platform account to the connected account
Thanks for sharing! When the transfer object is created, i.e. the response of Transfer Creation request returns 200 and an transfer ID (tr_xxx) is returned, the transfer is successful
Ok cool so basically the transfer is instant
if I am getting 200, means it's successful and the money is already in the connected account
am I correct?
After double checking, the correct way to check the timestamp when the funds reached connected account will be expanding destination_payment.balance_transaction when creating a Transfer. The corresponding Balance Transaction in the response will contain available_on which shows when the funds will be available to be paid out: https://docs.stripe.com/api/balance_transactions/object#balance_transaction_object-available_on
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 see
can I ask
I have added the transaction list embeded component into my app
If I instantiate a transfer from the platform account to the client connected account
will the transfer be shown directly into this list of transaction, event if the money is not yet available for payout?
The fund will be shown directly in the transaction list even if the money is not yet available
No problem! Happy to help ๐
cheers