Integrate our products into your software. Let's make payment happen together!
Look at all the possibilitiesThis guide will show you how you can retrieve open pre authorisations.
The following code snippet demonstrates how you can retrieve open pre authorisations.
TerminalDelegate terminalDelegate = new TerminalDelegate() { @Override public void onPaymentAdministrationSuccess(PaymentAdministrationResult result) { //contains code which handles a successful status call // OpenPreAuthorisation object contains the TrackingToken and the PreAuthReference of an open pre authorisation ListopenPreAuthorisations = result.openPreAuthorisations(); } @Override public void onError(Error error) { //contains code which handles a failed status call } }; TerminalApi terminalService = new TerminalService(); terminalService.retrieveOpenPreAuthorisations(externalTerminal, delegate);