Forums
Hi, I was wondering if it was possible to update a signer's email address after a package has been sent? I was looking at the Java SDK and noticed this: Signer signer1 = eslClient.getPackageService().getSigner(packageId, "insured1"); Which successfully returns the signer I'm attempting to update, but I only see getEmail(). There is no method to set the email address. Is there some other way to update a signer's email address from a retrieved package? Thanks!
Forums
Hi, Is there a way to build a package such that one signer would sign 2 documents. Here is an algorithm that I am looking at: 1. Use PAckageBuilder to build a package named 'OriginalPackage' 2. Add 'signer1' and 'signer2' to OriginalPackage 3. Add 'document1' and 'document2' to OriginalPackage 4. signer1 will sign only document1 5. signer2 will sign document1 and document2 The problem I get when I use the API is that it does not allow me to assign signer2 to document2.
Forums
Hi, When I try to updatePackage() I get the following exception. I am trying to update the package with additional signer information to a placeholder block in the document when I get this problem. Any idea why would this happen? com.silanis.esl.sdk.internal.EslServerException: Could not update role Exception: HTTP PUT on URI https://sandbox.e-signlive.com/api/packages/fb433c2d-8fa3-47db-97d9-81e92ff5780d/roles/FormB_RequestingProgramOfficial resulted in response with status code: [500, Internal Server Error].
Forums
Hello Team, I have the following scenario: I am trying to create a Package with a PDF document, which is provided as binary stream. I also want to add a Signer(s) Signature(s) and to locate these through corresponding text-anchors. In case when the required text-anchors are not available in th ePDF document I get the following Error:
com.silanis.esl.sdk.internal.EslServerException: Could not upload document to package. 

Exception: HTTP POST on URI https://sandbox.esignlive.com/packages/qYSDX1Frsvn5-T-F8Hg39g5fWm4=/documents 
resulted in response with status code: [400, Bad Request].
Forums
Hello there, I have an eSignLive integration, using the SDK v11, where I am able to Create& Send package for signing to:
1.  Three Signers with corresponding "Click to Sign" signatures 
2. and another - 4th signer with a "Hidden - Click to Accept" signature
I am also able to Sign this PackageDocument for each signer using the eslClienbt.signDocuments() call. After above implementation I am able to check my sandbox account and see the created, signed and auto-completed Transaction.
Forums
Hi, Can we send metadata with each document? In our application, we want to store multiple keys for each document. We thought about using the document Id, but it quickly became too complicated. Is there a way to store metadata for each document for that when we download the package, we can extract that metadata? Danny
Forums
Hello, I am working on an eSignLive integrtion through the SDK and I have the following requirement for multiple signers: Given: a DocumentPackage for signing with eSignLive and 3 Signers. Then: 1st&3rd Signers should "Click to Sign" (using provided in email link) 2nd Signer: should NOT get the email notification and should be able to just "Click to accept". Could you tell me if this can be implemented or I need to remove the 2nd Signer from the Recipients list, before sending the package for sending? Thank you very much in advance.
Forums
Hi, I followed this guide to format my PDF to accept signatures for my client1 and client2. However, client2 is an optional signer. She does not have to exist. When I pass in only client1, I get a validation error: Errors: [Could not find extract info role: Joint1]","message":"Unable to extract PDF fields from this document.","code":400,"name":"Validation Error"} How can I configure this so that a signature field is ignored if there is no 2nd signer? Thanks, Danny