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 the possible transaction types on your OPI-DE configured terminal. This retrieval of transaction types via the Status call is only possible on OPI-DE terminals running the latest terminal software version.
The following code snippet demonstrates how you can retrieve the possible transaction types on your OPI-DE terminal.
TerminalDelegate terminalDelegate = new TerminalDelegate() { @Override public void onPaymentAdministrationSuccess(PaymentAdministrationResult result) { //contains code which handles a successful status call //PaymentAdministrationResult contains all the request type that are possible on the terminal } @Override public void onError(Error error) { //contains code which handles a failed status call } }; TerminalApi terminalService = new TerminalService(); terminalService.status(externalTerminal, terminalDelegate);