Steve Kennedy
Steve Kennedy

Reputation: 5402

Single Signer on Multiple Documents on Single Envelope

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?

enter image description here

Upvotes: 0

Views: 138

Answers (2)

kinezu
kinezu

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

Larry K
Larry K

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

Related Questions