Melissa_Kim

Download 'Electronic disclosure and Signature consent' document

0 votes
Currently, 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

1 votes
OneSpan Sign does not allow anyone but the owner of the transaction to receive or download the evidence summary directly from the system as it could contain information about other signers. If you’re using the API or SDK, you can definitely download the document and present it to your signers how you see fit. The following is the url for downloading "Electronic Disclosure and Signature Consents":
/packages/{packageId}/documents/default-consent/pdf
As 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!

Duo Liang OneSpan Evangelism and Partner Integrations Developer


Reply to: Download 'Electronic disclosure and Signature consent' document

0 votes
Thanks for helping me! I solve the problem. :) !

Hello! Looks like you're enjoying the discussion, but haven't signed up for an account.

When you create an account, we remember exactly what you've read, so you always come right back where you left off