GetContactScoreByContactId

Gets contact scoring for a contact by ID

This method retrieves contact scoring for a contact by their ID.

SOAP action: http://apiconnector.com/v2/ApiService/GetContactScoreByContactId

📘

Input and output parameters

Input parameters

  • ID - required; integer

Output parameters

  • GetContactsScoreByContactIdResult - array of ContactScore
    • ContactScore
      • Id - integer
      • Email - string
      • DateModified - dateTime
      • ScoreLabel - string
      • Score - integer
      • Engagement - integer
      • Suitability - integer

Example

using (var client = new ApiServiceClient())
{
  client.ClientCredentials.UserName.UserName = "username";
  client.ClientCredentials.UserName.Password = "password";

  int id = 1;
  var result = client.GetContactScoreByContactId(id);
}