简体   繁体   中英

Authorize.Net capture settlements

In Authorize.Net is there a way to identify or trigger even when a settlement is a success? I need to update my order in the database so if any webhook for this would be great, does anyone know where I can found more details about it?

There is no webhook for when a settlement occurs. But, since they occur at exactly the same time each night and rarely, if ever, fail, you could just set up an automated job to update your database at the settlement time each night.

You can also parse the credit card settlement report email if want a trigger that is specific to a settlement occurring.

If you want to confirm the payment is settled you can always make an API call to get the transaction status. getTransactionDetailsRequest has a value called transactionStatus which will say "settledSuccessfully" is it was settled.

Or call getUnsettledTransactionListRequest and see if there are any unsettled transactions. If not, then you know they all settled successfully.

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