简体   繁体   English

收听哪个 webhook 以确认外部银行账户收到的付款

[英]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.所以我正在使用转移 api。 on using transfer api, amount is deducted from platform balance and added to connected user's transfers..在使用转账 api 时,将从平台余额中扣除金额并添加到已连接用户的转账中。

after scheduled payout timing.. ie (2 days for US) after the transfer was made, the payout will be attempted..在预定的支付时间之后.. 即(美国为 2 天)进行转账后,将尝试支付..

now i want to get notified when the amount reaches the user's bank account... what webhook i should use?现在我想在金额到达用户的银行账户时收到通知......我应该使用什么 webhook?

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.只会 transfer(transfer.paid, transfer.failed) webhook 就足够了,或者我需要使用 payout(payout.failed, payout.paid) webhook 也用于获取金额已到达我连接用户的外部银行帐户的通知。

You'll receive a payout.paid event when Stripe expects the payout to land;当 Stripe 预计支付成功时,您将收到payout.paid事件; however, Stripe doesn't receive confirmation of it, so it's a best guess.然而,Stripe 没有收到确认,所以这是一个最好的猜测。 If the payout fails, you'll receive a payout.failed , so as long as you don't receive that one, you should be good.如果支付失败,你会收到一个payout.failed ,所以只要你没有收到那个,你应该是好的。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 条纹支付到银行账户 - Stripe Payout to Bank Account Stripe:将付款发送到客户的外部银行账户或借记卡 - Stripe: Send payout to customers' external bank account or debit card Stripe Payout - 如何将银行帐户上的对帐单文本与 Payout 匹配? - Stripe Payout - How to match statement text on bank account to Payout? 确认付款已到达外部银行账户 - cofirming a payout has reached external bank account 使用Stripe付款网关向银行帐户发起付款 - Initiate a payout to bank account using Stripe payment gateway 想要使用 Stripe 向另一个银行账户付款 - Want to payout money to another bank account using stripe 使用Stripe Payout API将金额转入客户的银行帐户 - Transfer amount into customer's bank account using Stripe Payout API 平台 Stripe 自动支付给连接的条带账户不起作用 - 没有这样的外部账户 - Platform Stripe automatic payout to connected stripe accounts not working - No such external account 支付给用户的外部账户银行账户给出“没有这样的外部账户......” - Payout to User's External account bank account gives 'No such External Account...' 如何支付给已连接用户(将资金从已连接用户的条带账户转移到他们的个人银行账户)? - How to payout to a connected user (move funds from connected user's stripe account to their personal bank account)?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM