Integrate our products into your software. Let's make payment happen together!
Look at all the possibilitiesThe get config terminal operation allow you to retrieve configuration data from the terminal, this data can be used to know which configuration are available for your terminal.
The following code snippet demonstrates how you can do a get config:
OpiDEApi opiDeService = new OpiDEService(); TerminalDelegate terminalDelegate = new TerminalDelegate() { ... @Override public void configData(ConfigData configData) { //ConfigData contains everything concerning the terminal configuration data. } ... } opiDeService.terminalAdministrationOperation(externalTerminal, terminalDelegate, TerminalAdministrationOperationType.CONFIG_DATA);