GetContactsScoreModifiedSinceDate

Gets contacts whose contact scoring data has been modified since a given date

This method retrieves contacts whose contact scoring data has been modified since a given date.

Please note: it retrieves contacts with modified contact scoring data since a given date, not modified contacts since a given date.

The select parameter requires a number between 1 and 1000 (0 is not a valid number). You may only select a maximum of 1000 results in a single request. This parameter goes within the URL.

The skip parameter should be used in tandem with the select parameter when wanting to iterate through a whole data set. If you want to select the next 1000 records you should set the select parameter to 1000 and the skip parameter to 1000, which will return records 1001 to 2000. You should continue to do this until 0 records are returned to retrieve the whole data set. This parameter goes within the URL.

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

📘

Input and output parameters

Input parameters

  • StartDate - required; dateTime
  • Select - optional; integer
  • Skip - optional; integer

Output parameters

  • GetContactsScoreModifiedSinceDateResult - 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 startDate = new DateTime(2016, 1, 1);
  int select = 1000;
  int skip = 0;
  var result = client.GetContactsScoreModifiedSinceDate(startDate, select, skip);
}