1
votes

with reference to the question (How to get signed envelop in docusign)

I'm uploading 3 documents to docusign after signing process is completed I want to download one single combined document (consisting of 3 documents that I uploaded + certificate). I saw the API guid which refers to envelopesApi.GetEnvelope(AccountId, envelopeId, null). This returns us back the CombinedURI. But I'm not sure how to actually download the whole document as one single document with the combined URI.

Any help would be much appreciated.

2

2 Answers

4
votes

You'll want a GET to /accounts/{accountId}/envelopes/{envelopeId}/documents/combined

4
votes
envelopesApi.getDocument(accountId, envelopeId, "combined")

That gets me the signed PDF document(s) for the given envelope.