我沒有找到refund
webhook webhooks list。Braintree有退款webhook嗎?
是撥款webhook什麼可以幫助我在這種情況下https://developers.braintreepayments.com/reference/general/webhooks/disbursement/php?
[編輯#1]:我測試了一下,發現Disbursment網絡掛接退款按鈕被點擊布倫特裏沙箱管理員後不會觸發。
所以我認爲沒有webhook退款。現在,我結束了與計劃的cron任務從布倫特裏API獲得退款交易:
$collection = Braintree_Transaction::search([
Braintree_TransactionSearch::createdAt()->greaterThanOrEqualTo($hourAgo),
Braintree_TransactionSearch::type()->is(Braintree_Transaction::CREDIT),
Braintree_TransactionSearch::refund()->is(true)
]);
附:嘿,downvoters,你爲什麼不在意見中爭論你的意見?至少它可能會有幫助的人會找到這個線程。