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 terminal status. These are the possible fields that can be retrieved with the GetStatus call:
The following code snippet demonstrates how you can retrieve the terminal status.
TerminalDelegate terminalDelegate = new TerminalDelegate() { @Override public void onPaymentAdministrationSuccess(PaymentAdministrationResult result) { //contains code which handles a successful status call } @Override public void onError(Error error) { //contains code which handles a failed status call } }; TerminalApi terminalService = new TerminalService(); terminalService.status(externalTerminal, delegate);