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.
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
}
Managing Participants
When you create a new Transaction, you are required to include at least one Document, one Participant, and one Task per Document/Participant. However, after the Transaction is created, you can add new Participants or update existing Participants via the API at any point as long as the transaction is still in the Pending status.
Notification Placeholders