简体   繁体   中英

Which webhook to listen to confirm payout recieved by external bank account in stripe

i am using stripe connet account, and i need to transfer money from platform balance to my connected user's external bank account..

so i am using transfers api. on using transfer api, amount is deducted from platform balance and added to connected user's transfers..

after scheduled payout timing.. ie (2 days for US) after the transfer was made, the payout will be attempted..

now i want to get notified when the amount reaches the user's bank account... what webhook i should use?

will only transfer(transfer.paid, transfer.failed) webhook will be enough or i need to use payout(payout.failed, payout.paid) webhooks also to be used to get notification that amount reached my connected user's external bank account.

You'll receive a payout.paid event when Stripe expects the payout to land; however, Stripe doesn't receive confirmation of it, so it's a best guess. If the payout fails, you'll receive a payout.failed , so as long as you don't receive that one, you should be good.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM