Topic Replies Freshness Views Users
Normal topic
We are looking at using the .NET SDK in our application, but would like to see a full example of an integration vs just snippets of code. Does anything like this exist?
Normal topic
I am wanting to get information from the audit service for use within my application, but I'm not certain exactly how to use it. Can anyone provide an example? Thanks, Homer
Normal topic
if (!EventHandler.ContainsKey(NotificationEvent.PACKAGE_READY_FOR_COMPLETION)) EventHandler.Add(NotificationEvent.PACKAGE_READY_FOR_COMPLETION, (EventRequest request) => { // RESPONSE TO Set Status to Completed });
Normal topic
Hi, would you be able to give me some scenarios where we use InjectedField. I'm trying this in my code following the API documentation but I don't see it on the document during signing. Below is my code snippet.
Normal topic
I tried this one on SDK 10.10.1.0, and tried various different ways to see if it will return the Field properties and it failed to return. My PDF contains only 2 fields that I'm populating using Field Injection. Please see attached…
Normal topic
Hello, I hope someone can help me out with this, since I was not able to find an answer to my questions in the documentation that I read on your site. Here is what I am trying to do: 1. Take existing PDF document and add all required…
Normal topic
I'm using the SDK to create a package that contains one document to be signed. I want to offer my customer the ability to 'Cancel' a package. Should I use the 'Trash' or the 'Delete Package' method? What are the differences?
Normal topic
Hello, I'm trying to understand the difference between CreatePackage and CreatePackageOneStep in the .Net SDK. I've come across examples where each is being used but there doesn't appear to be a difference in how they are being used.
    Normal topic
    Hi, When we integrate Silanis.ESL.SDK with CRM online, we face issue with JsonConvert.DeserializeObject and JsonConvert.SerializeObject . Inside Sililanis.ESl.SDK both Serialize and deserialize is been used but both are not working. Do…
    Normal topic
    Can you please point me or send me the link to the API/ SDK code to allow for in-person scenario to toggle between signers. Thanks
    Normal topic
    Hi, For online integration we are facing the version issue, We are not getting the Current version 10.10.1 from (VersionUtil.getVersion()) in the EslClient.cs. But this works if we modify our code to var CurrentVersion = "10.10.1"; …
    Normal topic
    We have been using Silanis .NET SDK for almost a year now and have a separate staging environment that uses the sandbox Silanis environment. However, today, this code below started failing as GetTemplates() is not returning anything. We're…
    Normal topic
    Hi, I am trying to update a LinkHref of an existing package that has been sent to the client, I use the updatepackge function for the same, I did not get any error in the response, but the new value is not reflecting in the package. Can…
    Normal topic
    We are integrating e-SignLive with an EPiServer site. The EPiServer version we are using depends on log4net version 1.2.10 but the Silanis.ESL.dll depends on 1.2.13. We tried using a binding redirect in the application's web config with…
    Normal topic
    I use your example to test your API. ........ SignerBuilder.NewSignerWithEmail(email1) .WithFirstName("dejan") .WithLastName("lukic") .WithTitle("Pack title") ) ....... Signer receives email as Reviewer instead as a Signer. How to…
    Normal topic
    Hi is it possible from custom UIto allow user to place signature on the page...to choose where it want it. What parameters I need to set in the code. I use .net SDK Also would it be possible to size iFrame to the document or to remove all…
    Normal topic
    One of the requirements I have is a possibility for user to place a logo on a document beside signature. I realize that I can add custom fields but none of them is an image type. Is this possible to achieve? And how?
    Normal topic
    I have a requirement to integrate seamlessly with eSignLive. We will have many clients on our side and each will have an account with Silanis. I need to authenticate user in code behind when user logs into our portal. Basically, if I…
    Normal topic
    I'm using .Net SDK. I create token: string sessionTokenString = eslClient.AuthenticationTokenService.CreateSenderAuthenticationToken(id); and then
    Normal topic
    I have a controller method public List GetPackageTransactions(string packageId) // packageId = "660bd4f9-d090-4233-9fec-d176404e1871" { PackageId pid = new Silanis.ESL.SDK.PackageId(packageId); List…
    Normal topic
    I'm trying to get the Authentication token with the following code, however its return error "The remote server returned an error: (405) Method Not Allowed." string url = "https://sandbox.esignlive.com/api/authenticationTokens"; …
    Normal topic
    I can't seem to get the senderAuthenticationToken. I'm receiving a 415 error code, Unsupported Media Type. Any ideas what I'm doing wrong? PackageId packageId = eslClient.CreatePackage(superDuperPackage); using (var…
    Normal topic
    I couldn’t find a method to add documents to package in draft mode. It seems UpdatePackage updates everything but documents. Is there a method to add documents in the package once it been created? If there is such method in your SDK…
    Normal topic
    I need to have a way to enter the url like https://sandbox.esignlive.com/packages/ab854149-bd9c-4c80-89e0-3a6012c23659 and using single sign on be instantly put into that document packages edit screen using your web interface. The theory…
    Normal topic
    I just had groups enabled on my account and am wanting to create them and invite signers to the groups. Does anyone have an example of how to do this?