Pronto v5 Web Services
MethodResendParticipantEmailNotifications
Pronto v5 Web Services > All Operations Resource Group : ResendParticipantEmailNotifications (Method)
Request (IProntoService_ResendParticipantEmailNotifications_InputMessage)

The request body is of type ResendParticipantEmailNotifications.

Request Body Parameters

NameDescriptionData Type
 ServiceAuthenticationModel
 ParticipantResendNotificationRequestModel
EnableLogging Element ParticipantResendNotificationModel Element Sequence Participants Element Sequence participantResendNotificationRequest Element ApiPassword Element ApiUsername Element ApiSecretOrAuthData Element ApiKeyOrProntoID Element Sequence serviceAuthentication Element Sequence ResendParticipantEmailNotifications Element

Overview

Response (IProntoService_ResendParticipantEmailNotifications_OutputMessage)

The response body is of type ResendParticipantEmailNotificationsResponse.

Response Body Parameters

NameDescriptionData Type
 DefaultServiceReturnModel
TimeZoneUtcOffset Element ProcessingTime Element Message Element IsSuccessful Element Sequence ResendParticipantEmailNotificationsResult Element Sequence ResendParticipantEmailNotificationsResponse Element

Overview

Sequence
Sequence
IsSuccessful optional xs:boolean
Message optional xs:string
ProcessingTime optional xs:string
TimeZoneUtcOffset optional xs:double
Example
var model = new ParticipantResendNotificationRequestModel()
{
    Participants = new ParticipantResendNotificationModel[] 
    {
        new ParticipantResendNotificationModel()
        {
            ID = 1234567890,
            EmailAddress = "corrected-email@some-domain.com"
        }
    }
};
var results = serviceClient.ResendParticipantEmailNotifications(sa, model);
if (results.IsSuccessful)
{
    //do work...
}
else
{
    //handle error
}
Dim model = New ParticipantResendNotificationRequestModel() With { 
	 .Participants = New ParticipantResendNotificationModel() {New ParticipantResendNotificationModel() With { 
		 .ID = 1234567890, 
		 .EmailAddress = "corrected-email@some-domain.com" 
	}} 
}
Dim results = serviceClient.ResendParticipantEmailNotifications(sa, model)
If Not results.IsSuccessful Then
    'do work...
Else
    'handle error
End If
See Also
All Operations Resource GroupPronto v5 Web Services