Itay R
Itay R

Reputation: 31

DocusignAPI : How can I download the internal document out of envelope without the envelope_id automatic stamp?

I have DocuSign documents (.pdf extension documents that were signed by docusign). I'm trying to find a programmatic solution via DocuSign API how can I remove the "DocuSign Envelope ID: {GUID}" automatic stamp that exists on every top of page in the documents.

  1. Is there such a solution inside DocuSign API? and if yes, how can it be done?
  2. If not, what are the alternatives?

Thanks a lot.

Upvotes: 1

Views: 140

Answers (1)

Praveen Reddy
Praveen Reddy

Reputation: 7393

For new envelopes, you can set the envelopeIdStamping property in your createEnvelope request so that the stamp is not included. The stamp cannot be removed on completed envelopes.

{
 "envelopeIdStamping" : "false",    
 "status": "sent",
 "emailSubject": "Example of one recipient, type signer",
 "documents": [],
 "recipients": {}
}

Note that envelopeIdStamping is driven based on Account and Admin settings. See this answer for more information. See this page for other options.

Upvotes: 1

Related Questions