Download 'Electronic disclosure and Signature consent' document
Wednesday, June 13, 2018 at 08:50pmCurrently, we offer our customers a separate download service for signed-documents and evidence summary. 
Customers, however, want to receive a download to the Electronic Disclosure and Signature Consent. When I found out the related content in eSignlive, I couldn't find the way to download the document.
Can eSignlive has the way to download Electronic Disclosure and Signature Consents? If so, Could you provide me the URL or coding?
      
                                    
Reply to: Download 'Electronic disclosure and Signature consent' document
Friday, June 15, 2018 at 06:37am/packages/{packageId}/documents/default-consent/pdfAs you noticed, the consent file is given a default id by "default-consent", you can do this in a similar way in both Java or .Net Sdk by following code:byte[] docWithId = eslClient.downloadDocument("your package id", "default-consent"); Files.saveTo(docWithId, "your folder path/default-consent.pdf");You can see how to download the evidence summary and all other documents in the Retrieve Documents guide. Hope you find this reply helpful!Reply to: Download 'Electronic disclosure and Signature consent' document
Monday, June 25, 2018 at 08:23pm