I am using an C# example for sending documents to recipients and that works, but I want to send to an agent since I will not know the recipients, but when I add the Agent, the email never prompts for the signer emails to forward to?
Agent agent1 = new Agent
{
Email = signerEmail,
Name = signerName,
RecipientId = "1",
RoutingOrder = "1",
};
// Add the recipients to the envelope object
Recipients recipients = new Recipients
{
Agents = new List<Agent> { agent1 },
};
env.Recipients = recipients;