0
votes

In the Query Parameter to GET Docusign Envelope Recipient's view, where the GET call is "/restapi/v2.1/accounts/{accountId}/envelopes/{envelopeId}/documents/combined?recipient_id=123&documents_by_userid=false", is the recipient_id, the GUID generated by docusign or is the ID the one we have to pass in the Envelope create call?

2

2 Answers

0
votes

The Recipient ID is the one passed in the Envelope Creation call (unless you're using Composite Templates, which may result in your recipient IDs being collapsed into 1, 2, 3...). If you're not certain what your recipient IDs are, make a GetRecipients call first and look for the RecipientId parameter in question.

I was able to get a limited view of the combined documents (only showing the documents that recipient was able to view) by doing GET /envelopes/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx/documents/combined?recipient_id=63189929. I had sent out of the web console, so my recipients had random integers for IDs.

If this isn't working for you, I'd recommend opening a Support Case. If you do, please include your Envelope ID and an API log of your attempt to download the combined documents.

0
votes

First, off this is not what we call recipient view. This call is for downloading the actual envelope and its documents. There's a different POST call to generated a recipient view. As for recipientId it is the one you specified when you created the envelope, it doesn't have to be a GUID it can be "1" or whatever you want it to be.