Gets contact scoring for a contact by email address
This method retrieves contact scoring for a contact by their email address.
SOAP action: http://apiconnector.com/v2/ApiService/GetContactScoreByEmail
Input and output parameters
Input parameters
- Email - required; string
Output parameters
- GetContactScoreByEmailResult - 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";
var email = "[email protected]";
var result = client.GetContactScoreByEmail(email);
}