Integrate our products into your software. Let's make payment happen together!
Look at all the possibilitiesThis guide will show you how you can perform the login function on the terminal, this function checks if all components are connected. This is only for OPI-DE terminals.
The following code snippet demonstrates how you can perform the Login.
TerminalDelegate terminalDelegate = new TerminalDelegate() {
@Override
public void onPaymentAdministrationSuccess(PaymentAdministrationResult result) {
//contains code which handles a successful login call
result.cardCircuits
result.requestTypes
}
@Override
public void onError(Error error) {
//contains code which handles a failed login call
}
};
TerminalApi terminalService = new TerminalService();
terminalService.login(externalTerminal, terminalDelegate);