getSystemInfo

Parent Previous Next

getSystemInfo

Retrieves API version, environment, data-center, time.

 

Description

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.

 

Syntax

SystemInfo getSystemInfo ( ueSecurityToken Token )

 

Arguments

Type

Name

Description

ueSecurityToken

Token

Merchant security token, used to identify merchant and validate request.

 

Return Value

SystemInfo

Retrieves API version, environment, data-center, time.

 

Examples

 

 

PHP

 

.NET VB

Dim info As eBizCharge.SystemInfo = New eBizCharge.SystemInfo

       info = client.getSystemInfo(token)

       MsgBox(info.ApiVersion)

 

 

.NET C#

          try

           {

               eBizCharge.SystemInfo system = client.getSystemInfo(token);

               MessageBox.Show(string.Concat(system.ApiVersion));

           }

           catch (Exception err)

           {

               MessageBox.Show(err.Message);

           }

: