Reputation: 1005
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.. i.e. (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.
Upvotes: 1
Views: 308
Reputation: 8747
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.
Upvotes: 0