Reputation: 5402
I am using the most current DocuSign.eSign.dll NuGet package for C#/.NET.
I have a single Signer, who needs to sign two different documents (PDFs). I want the signer to sign both the documents together, in the same session.
So, I created a new envelope that has TWO documents (base 64 encoded) and EACH of those documents has the same SINGLE signer, but get back an error saying that the envelope has DUPLICATE RECIPIENTS.
How else am I supposed to construct this API call/envelope, in order for the signer to sign both the documents together, in the same session on the DocuSign website?
Upvotes: 0
Views: 138
Reputation: 1272
As stated by, Lary K, it needs to be an array. I just posted an example here: How to send multiple documents for signature DocuSign for Salesforce
Upvotes: 0
Reputation: 49104
Your envelope should have one recipient (signer) and two documents.
The documents
field in the envelopeDefinition
object takes an array of document
objects.
Create one document object for each of your documents and you should be all set.
Upvotes: 1