Retrieves API version, environment, data-center, time.
This method pulls the system information.
Information accessible through this method includes API version number, environment (production/sandbox/staging), data-center location, and the current time.
SystemInfo getSystemInfo ( ueSecurityToken Token )
Type |
Name |
Description |
Token |
Merchant security token, used to identify merchant and validate request. |
Retrieves API version, environment, data-center, time. |
Dim info As eBizCharge.SystemInfo = New eBizCharge.SystemInfo
info = client.getSystemInfo(token)
MsgBox(info.ApiVersion)
try
{
eBizCharge.SystemInfo system = client.getSystemInfo(token);
MessageBox.Show(string.Concat(system.ApiVersion));
}
catch (Exception err)
{
MessageBox.Show(err.Message);
}