...
Documents: managing and processing documents (certificates and envelops) in DocuSign.
- We can download PDF documents and envelops from DocuSign.
Each document should be wrapped to envelope. Envelope can contain one or several documents.
You need provide EnvelopeId and DocumentId for getting document:Code Block /api/v2/Documents/Document/{EnvelopeID}/{DocumentID}
Or you can download envelop with documents inside:
Code Block /api/v2/Documents/Envelop{EnvelopeID}
You can also download all signed envelops:
Code Block /api/v2/Documents/Envelops
- Convert Html document to PDF
DocuSign sign only PDF documents. But you can send Html, Jpeg or MS Office document to DocuSign and DocuSign will convert it to pdf for you. Unfortunately, resulting PDF is not completely accessible.
But if you want to have more control you can convert Html to PDF yourself. We use for this Telerik document processing library.
You can use the following POST endpoint to convert Html to PDF:Code Block /api/v1/Documents/HTMLToPDF/
EVE: generating QR code for links to EVE
/wiki/spaces/MAR/pages/2577891341 is a website designed for the purpose of allowing users to check the validity of digital documents issued by Transport Canada.
Using DS API, you can generate search result links to EVE or generate QR instead links.
To get link:Code Block /api/v2/EVE/URL/
To get QR code:
Code Block /api/v2/EVE/URL/QRCodeImageForURL/
Signing: signing documents (Html. PDF, JPG and MS Office docs) in DocuSign
There are 3 ways to sign document:Embedded
Email Request
Template
You can specify signature position two ways:
- absolution position (X, Y) or
- anchor, marking some text as place where signature should be
Users: managing DocuSign users
- Create DocuSign user
- Update user information
- Delete user
These actions require Admin scope
...