J.Ravindra
J.Ravindra

Reputation: 1

Docusign document retrieve using Docusign-connect

I am using the Docusign-Connet to get the notifications form docusign. In docusign api there is a line

"It can also be used to transport the completed documents back to your app or website and to retrieve any form field data entered by your recipients"

but in payload I am getting only document names?.

Upvotes: 0

Views: 459

Answers (2)

kishanW
kishanW

Reputation: 49

What i've done in the past is, get the document statuses from DocuSignConnect when things change. Then call EnvelopesApi.GetDocument endpoint with DocumentStatuses.DocumentStatus.ID and the envelope ID to retrieve the document.

In my implementation, we only download the document if the entire envelope is complete. This way, the DocuSignConnect payload is not big as well.

Btw, my implementation is in .net using their 2.1.9.0 library. Good luck!

Upvotes: 2

Larry K
Larry K

Reputation: 49104

If you want the connect messages to include the envelopes' documents or fields, check the boxes in the Connection Subscription screen (shown below from the New DocuSign Experience Admin tool).

Or set the fields includeDocumentFields and/or includeDocuments to true in your call to ConnectConfigurations: create

enter image description here

Upvotes: 3

Related Questions