GetInterCompanyConnectionList - accountsIQ/API-Wiki GitHub Wiki

The GetInterCompanyConnectionList function returns a list of valid inter-company connections.

Declaration

C#

public WSResult2OfArrayOfWSInterCompanyConnection GetInterCompanyConnectionList(string token)

Visual Basic

Public Function GetInterCompanyConnectionList(ByVal token As String) As WSResult2OfArrayOfWSInterCompanyConnection

Parameter List

Parameter Type Description
token String The session token retrieved during authentication.

Please see WSInterCompanyConnection for the detail of the return type.

Example

The following example retrieves the list of all valid inter-company connections for entity:

C#

Integration ws = new Integration();

String auth = ws.Login(entityID, partnerKey, userKey);
if( auth != null )
{
  WSResult2OfWSBankAccountBalance result = this.ws.GetInterCompanyConnectionList(this.auth);
}

See Also

⚠️ **GitHub.com Fallback** ⚠️