MellonGroupPOS.getTerminalList Method
Public Function getTerminalList( _
ByVal APIKey As String _
) As List(Of POSTerminal)
This language is not supported or no code example is available.
Parameters
- APIKey
- string
The API key that is obtained by the getApiKey method.
Return Value
List<POSTerminal>List<MellonGroupPOS.POSTerminal> Terminals = mlg.getTerminalList("myAPIKey"); foreach (var trm in Terminals) Console.WriteLine("Friendly Name:" + trm.FriendlyName + " TerminalID: " + trm.TerminalID);
This language is not supported or no code example is available.