GetEnrolmentReport

Gets all contacts that were not successfully enrolled, by enrolment ID

This method returns all contacts that failed to enrol, by enrolment ID (GUID), providing their contact ID, email address and the reason why they couldn't be enrolled.

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

📘

Input and output parameters

The input and output parameters for this method are:

Input parameters

  • Enrolment ID - required; GUID

Output parameters

  • GetEnrolmentReportResult

Example

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

	var enrolmentId = new Guid("00000000-0000-0000-0000-000000000000");
	var enrolmentReport = client.GetEnrolmentReport(enrolmentId);
}