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 |
---|---|---|
ueSecurityToken | Token | Merchant security token, used to identify merchant and validate request. |
SystemInfo | Retrieves API version, environment, data-center, time. |
For directions on how to set up the WSDL link, create “$token” and “$client”, go to PHP Soap How-to.
Dim info As usaepay.SystemInfo = New usaepay.SystemInfo info = client.getSystemInfo(token) MsgBox(info.ApiVersion)
try { usaepay.SystemInfo system = client.getSystemInfo(token); MessageBox.Show(string.Concat(system.ApiVersion)); } catch (Exception err) { MessageBox.Show(err.Message); }
Version | Change |
---|---|
1.3 | Method added in this release |