Skip to content
On this page

Renotifying a Participant

There will be times when you need to resend a notification to your Participant. You can do this at any time as long as the Participant is in the Pending status.

csharp
var req = new ParticipantResendNotificationRequestModel()
{
    Participants = new List<object>
    {
        new ParticipantResendNotificationModel()
        {
            ID = 1234567890,
            EmailAddress = "corrected-email@some-domain.com"
        }
    }
};

var api = new ParticipantsApi(myRestEndpointUrl);
var results = api.ResendParticipantEmailNotifications(req, apiKey, apiSecret, apiUsername, apiPassword);
if (results.IsSuccessful.Value)
{
    //do work...
}
else
{
    //handle error
}