Download link
Friday, October 12, 2018 at 06:18am
Is there a way to generate a download link for the documents on onespan?
We would like to house the link on an internal website.
I am aware of the REST call to download docs..
https://developer.esignlive.com/guides/feature-guides/retrieving-documents/
However I need to create a download link that I can share. with other internal websites.
How does the email sent on completion, contain a download link.
See the attached screnshot of email I got after completion.
Reply to: Download link
Friday, October 12, 2018 at 07:12amsandbox.esignlive.com/api/packages/{packageId}/documents/{documentId}/pdfThen you directly return the byte[] of the document as an output stream to your HttpResponse. 2. Or you generate the signing URL again where carries the loginToken which allows your signer to get access to the Completed Signing Ceremony and download documents from there. (This is by default how OneSpan Sign send completed document link to signers) By calling this API:HTTP Request GET /api/packages/{packageId}/roles/{roleId}/signingUrl HTTP Headers Accept: application/json Content-Type: application/json Authorization: Basic api_keyHope this could help! DuoReply to: Download link
Friday, October 12, 2018 at 07:36am