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 getStatus
TerminalDelegate terminalDelegate = new TerminalDelegate() { @Override public void onPaymentAdministrationSuccess(PaymentAdministrationResult result) { //contains code which handles a successful status call // data is in result.terminalConfiguration() } @Override public void onError(Error error) { //contains code which handles a failed status call } }; TerminalApi terminalService = new TerminalService(); terminalService.getStatus(externalTerminal, terminalDelegate);
The method status() is deprecated and should no longer be used.