Gets the total number of contacts in the account
This method retrieves a count of all contacts in the account (the number of contacts in the 'All contacts' address book).
SOAP action: http://apiconnector.com/v2/ApiService/GetAllAccountContactsCount
Input and output parameters
The input and output parameters for this method are:
Input parameters
None requiredOutput parameters
- GetAllAccountContactsCountResult
- Count - integer
Example
using (var client = new ApiServiceClient())
{
client.ClientCredentials.UserName.UserName = "username";
client.ClientCredentials.UserName.Password = "password";
int count = client.GetAllAccountContactsCount();
}