-
Notifications
You must be signed in to change notification settings - Fork 2
GetInterCompanyConnectionList
Arivetti edited this page Aug 8, 2025
·
3 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 = "";// See Authentication page for more
if( auth != null )
{
WSResult2OfWSBankAccountBalance result = this.ws.GetInterCompanyConnectionList(this.auth);
}