Reputation: 1
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
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
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
Upvotes: 3