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