-
Notifications
You must be signed in to change notification settings - Fork 2
GetAllCustomerContacts
Arivetti edited this page Aug 8, 2025
·
8 revisions
The GetAllCustomerContacts function retrieves all customer contacts from each customer for a an entity.
HelpJuice links:
How do I Maintain Customer Master Records?
Adding & Editing a Customer Account
public WSResult2OfArrayOfWSAccountContact GetAllCustomerContacts(string token)Public Function GetAllCustomerContacts(ByVal token As String) As WSResult2OfArrayOfWSAccountContact| Parameter | Type | Description |
|---|---|---|
| token | String | The session token retrieved during authentication. |
Integration ws = new Integration();
String auth = "";// See Authentication page for more
if (auth != null)
{
var wsCustomerContacts = ws.GetAllCustomerContacts(auth).Result;
var customerContacts = wsCustomerContacts.Result;
}Dim ws As New Integration
Dim auth As String = "" // See Authentication page for more
If (Not Me.auth Is Nothing) Then
Dim customerContacts As WSResult2OfArrayOfWSAccountContact = Me.ws.GetAllCustomerContacts(Me.auth).Result
End IfWSAccountContact
WSResultStatus
GetAllSupplierContacts
GetSupplierContacts
GetCustomerContacts