Hello.
I am implementing a Checkout Handler in which I will need to go back to the payment service provider to check whether the payment has been made or not. From what I understand this is a job for the IRemoteCapture interface.
The handler might need to make the check on several occasions though, so how does the call to the Capture function work exactly?
Will it keep making the check periodically until the order is paid?
Will it keep making the check periodically while the CaptureInfo returned is NotCaptured ?
Is it a combination of several criteria?
Marco