The SendInvitationToFilteredRecipientList() method can be utilized to send to a subset of the recipients on your invitation recipient list.
class Test
{
static void Main()
{
var invProxy = new InvitationManagementServiceClient();
var sendInvitationResult = invProxy.SendInvitationToFilteredRecipientList(authToken,
1015, "Pending");
if (sendInvitationResult.CallSuccess)
Console.WriteLine("Successfully sent invitation");
}
}
Parameter |
Type |
Description |
authToken |
string |
Authentication token to validate permission over the data requested |
invitationID |
int |
Id of the invitation to send to your recipients |
recipientFilter |
string |
Filter to select which recipients should be sent an invitation |
Recipient Filter Values
Filter |
Description |
All |
All recipients |
Current |
All current recipients |
Responded |
All recipients that have responded |
NotResponded |
All recipients that have not responded |
Pending |
All recipients that are pending |
This section is currently under construction. Any documents that appear blank will be populated as soon as possible. If you have any questions or need assistance with something that is not currently documented please feel free to submit a support ticket and we will be glad to assist you.