-
Notifications
You must be signed in to change notification settings - Fork 2
GetInterCompanyConnectionList
Danko Sačer edited this page Jul 11, 2019
·
2 revisions
The GetInterCompanyConnectionList
function returns a list of valid inter-company connections.
public WSResult2OfArrayOfWSInterCompanyConnection GetInterCompanyConnectionList(string token)
Public Function GetInterCompanyConnectionList(ByVal token As String) As WSResult2OfArrayOfWSInterCompanyConnection
Parameter | Type | Description |
---|---|---|
token | String | The session token retrieved during authentication. |
Please see WSInterCompanyConnection for the detail of the return type.
The following example retrieves the list of all valid inter-company connections for entity:
Integration ws = new Integration();
String auth = ws.Login(entityID, partnerKey, userKey);
if( auth != null )
{
WSResult2OfWSBankAccountBalance result = this.ws.GetInterCompanyConnectionList(this.auth);
}