Forums

We just started receiving this error in the sandbox environment when attempting to download signed pdfs.  I don't believe anything has changed on our side for quite a while now. I removed the email address from the error message below, but it was the account owner's email address and not the email of the sender id.  The account owner in this case is not a signer on the transaction so I'm confused by the error message 'signer cannot be found'.

Forums

Hi,

 

We are using JAVA SDK v11.47 , we are downloading the PDF using the below code that is there on your developer portal. 

Observations:

1.  The files that we download using the below code gives us password prompt when we open it

2. if we use the ?flatten=true then we are getting a corrupted file which doesn't even open 

3. When we use the .net SDK for the same package id and the document id we don't see an issue i.e. the document gets downloaded correctly and we are able to open it without any issues

 

Forums

Hi. We are getting the following error when we try and create a package.

{"messageKey":"error.validation.verifyDocument.documentExtractError","message":"[error.validation.verifyDocument.documentExtractError]","cod e":400,"name":"Validation Error"}

The PDF form we are using is actually an IRS form which I have attached.

Any help is appreciated.

Thanks.

Forums

Hello, i'm doing a review about this link: https://www.onespan.com/blog/onespan-sign-developer-upload-signature-your-signer, to understand how to save the handdrawn signature. But in this part i do not understantd: 

3. Use Handdrawn to Create a Package

If you want to upload a captured signature for a signer next time before sending a package, add this handdrawn attribute into Role Block of your request payload as shown below:

"signature":{

Forums

I know how to retrieve the evidence pdf with the below code:

    byte[] evidenceContent = eslClient.downloadEvidenceSummary(packageId);
    Files.saveTo(evidenceContent, "evidence.pdf");

But don't know how to let OSS to automatically email the singers the evidence.pdf once the signing is completed. My below code just attached the complete document pdf to the email, the evidence pdf was not attached. Thanks for your help!