【发布时间】:2017-03-17 22:47:40
【问题描述】:
我没有在webhooks list 中找到一些refund webhook。
Disbursment webhook 在这种情况下对我有什么帮助 https://developers.braintreepayments.com/reference/general/webhooks/disbursement/php 吗?
[Edit #1]:我测试过,发现在 Braintree 沙盒管理中点击退款按钮后,Disbursment webhook不会触发。
所以我认为没有用于退款的 webhook。现在,我完成了计划的 cron 任务,以从 Braintree API 获取退款交易:
$collection = Braintree_Transaction::search([
Braintree_TransactionSearch::createdAt()->greaterThanOrEqualTo($hourAgo),
Braintree_TransactionSearch::type()->is(Braintree_Transaction::CREDIT),
Braintree_TransactionSearch::refund()->is(true)
]);
附:嘿,downvoters,你为什么不在 cmets 中论证你的观点?至少它可能对找到这个帖子的人有所帮助。
【问题讨论】:
标签: braintree