Reputation: 195
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.
Upvotes: 2
Views: 1333
Reputation: 71
envelopesApi.getDocument(accountId, envelopeId, "combined")
That gets me the signed PDF document(s) for the given envelope.
Upvotes: 7
Reputation: 1244
You'll want a GET to /accounts/{accountId}/envelopes/{envelopeId}/documents/combined
Upvotes: 5