155 results matched your search criteria
Forum topic
OneSpan Sign
I have installed and configured the OneSpan Laserfiche workflow, and it worked for the first two transactions. After that, it failed to download the signed document back into the repository. Below is the error message from the event viewer log.
Forum topic
OneSpan Sign
We have a user that would like to download all signed documents for the past week under his account. Would anyone have a sample code on how to do that?
Thanks,
Forum topic
OneSpan Sign
Hi,
I'd like to know how to download the flatten version of signed document via REST API? does it also configured in the account level?
Currently, we are using something like the below, it's giving me unflatten one.
Forum topic
OneSpan Sign
Guys,
We've noticed that when we have a notarized package, the users are not able to download the documents until after they sign and confirm the document. When there is not a notary associated to a package, the user can download the documents at any point during the transaction. Is this intended?
Forum topic
OneSpan Sign
Is there any way we can differentiate while downloading the accepted document (Signature Style ACCEPTANCE ) from original document?
Forum topic
OneSpan Sign
Hi Team,
Could you please let me know if we have the ability to download the completed packages as flatten documents using java?
Let me know if you need more information.
Thanks,
Sahana
Forum topic
OneSpan Sign
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..
Forum topic
OneSpan Sign
This works (after unzipping the file)
byte[] bytes = eslClient.PackageService.DownloadZippedDocuments(packageId);
using (Stream file = File.OpenWrite(DocumentName+".zip" ))
{
file.Write(bytes, 0, bytes.Length);
}
This creates a corrupt document
byte[] bytes= eslClient.PackageService.Downloa
Forum topic
OneSpan Sign
Please share node js code to download signed document.
Forum topic
OneSpan Sign
Hi,
I´m using /api/packages/{packageId}/attachment/{attachmentId} to dowload documents of a package that has been signged, how ever I´m getting a "404 Resource not found" error.