Writing a test to return authorize.net

Authorize.net will never allow you to return a transaction sent on the same day. Writing a test that creates a transaction and then returns it is therefore tough.

I could not find a way to do this through the API like this:

Can I ask Authorize.net to "resolve" a test transaction?

Or .. What is the right way to do this?

+6
source share
1 answer

Settlement is a batch operation that occurs once a day, starting from the moment the transaction specified in the seller’s interface is interrupted. You must wait until the settlement is completed. In a sandbox, a developer cannot force a situation to be resolved.

+3
source

Source: https://habr.com/ru/post/987672/


All Articles