Topic Replies Freshness Views Users
Normal topic

Hi. I've got fields that I've set up like this:

.withField(createFieldBuilder(FIELD_TEXT_BOX_CONSTANT, TEXT_BOX_GRP_ADDRESS_CONSTANT, "tbRetirementDate")
.withFontSize(22))

The font size is not…

Normal topic
Is there a way to determine the exact position of a signature other then tryal and errors when we do this by code? I'm refering to atPosition(val_1, val_2) lines in the code snippet below...

		// Build the…
Normal topic

Could you explain when access ability should be used and how to use it via JAVA SDK?

 

Thanks

 

Wendy

Normal topic
As part of our use case there is a statement on a form where the client acknowledges receipt of a document. ideally there would be link on the document which the signer could sign during the signing ceremony if they wanted to review the…
Normal topic
How do I add a signer to a package that I've already created? I see how to create a package with signers already in it by following this tutorial: https://www.silanis.com/blog/e-signlive-for-new-users-how-to-create-and-send-your-first…
Normal topic
Hi, I'm having problems with this funcionality, when I create eslPackage from template, I need add again the documents with "Upload method". The problem is that the Signers IDs doesn't caculated from me, I'm recieving the ids from…
Normal topic
Hi, I am looking for some code snippet to add a participant to just "Accept" the document instead of signing. Can anyone please give me some help? Thanks, KK
Normal topic
Hey, I am looking to include SMS authentication for a signer by first creating an authentication object and then including it in the constructor for the Signer object. I have been able to do this with the Q&A authentication as…
Normal topic
Hi, How can i use SDK to set multiple signature block on the same document for a single signer and the values to be passed dynamically. I have a list of coordinates which specify the position and size of my signature block for a single…
Normal topic
Hi, I am wanting to add some extra fields to the evidence summary PDF that can be viewed after a signing session is complete. I have tried to follow the tutorial for Signer Session fields, but have not been able to get it to work …
Normal topic

Hi,

Can I get a list of all webhook callback events, WITH their meaning for each?

Thanks,

Venu

Normal topic

Is there a Java SDK code example to do OAuth 2.0 for creating an EslClient?

Right now I'm using clientAppId and clientAppSecret.

We'd like the initial authentication to return an access token and an expiration…

Normal topic
HI, Is it possible to get the api key of the sender who sent the package. Thank you, Sudhangi
Normal topic
HI All, Can you help me to convert the below API request into equivalent SDK code to create the package(with one document file as attachment to sign off): { "name": "packagename", "status": "SENT", "roles": [ { "id":…
Normal topic
Hello, I am trying to apply a layout that is created with PlaceHolder for signers. In my package I add my real signers with email and would like to map each real signer to a placeholder in the layout. What is the best way to do this?…
Normal topic
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…
Normal topic
Are special characters allowed in Document name while creating package?
Normal topic
Hi, just a quick question about creating input fields using text tags. I've noticed that after adding any fields to a document with text tags they are all become associated with the first signature for that signer, is there a way to…
Normal topic
Apologies if this is a duplicate. I may have trashed the last thread accidentally. Hello everyone, We've been seeing errors uploading documents asynchronously using jar with dependencies 11.0.2. com.silanis.esl.sdk.EslException: Could…
Normal topic
In looking at the audit service for a package there appears to be events worthy of being in an audit log but do not appear to be. For example: PIN authentication failures show up, but not that access has been locked out. I haven't tried,…
Normal topic
Is it possible to require additional security beyond API key for communication to eSignLive for things like package creation? If using SAML 2.0 for user authentication is it possible to log a user into a package in an iFrame using SAML 2…
Normal topic
In attempting to use signerAuthenticationTokens, I was looking at the following: http://docs.e-signlive.com/doku.php?id=esl:e-signlive_guide_authentication&s[]=webpageurl#signerauthenticationtoken_example public…
Normal topic

Hello, I tray to get more information about the authentication methid SMS, par example to know the max length for the phone number, the international format number, but i do not find anything more clear than that. Can you help me please…

Normal topic
We would like to do AutoEsign in our project .But we don’t want to send email and the documents (preview or download) to the user .Is it possible to do that?
Normal topic

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

    byte[] evidenceContent = eslClient.downloadEvidenceSummary(packageId);
    Files.saveTo(evidenceContent, …