Forums
Hi. I am trying to implement the sample code provided at https://developer.esignlive.com/code-share/php-web-form-application-example/ I have changed the API Key to the API key in my account. I believe that is the only thing that needs to be changed, unless I am wrong. private $url = "https://sandbox.esignlive.com/api"; private $key = "XXXXXXXXXX"; private $packageAppend = "/packages/"; private $tokenAppend = "/signerAuthenticationTokens/"; When I attempt to use this sample code, i receive the following error: "Unauthorized Access We're sorry. Your session may have expired.
Forums
Hi Team, I am trying to use the REST APIs to Integrate Silanis with my application. Before I code any API URL in my program, I want to test and validate URIs using PostMan Client. I have tried couple of sample programs shared in Developers blogs and are working fine, But write the code to meet my requirement I should be able to get a feel of the URLs by testing them in PostMan client, But note of the URI are working for me. I am sure definitely, I am missing something.
Forums
Hi Haris, I am trying to create new package and then updload the document at a later point after creating package. Basically i want to it separate the steps. (create packages , upload document(s) to the created package). I have picked up the package input payload from http://docs.e-signlive.com/mc/content/c_esignlive_integrator_s_guide/rest_api/packages.htm Can you please look at below code and let me know what is missing in below code.
Forums
Is this sender token required in a json package? I ask because I get an error sending a package request stating "id": "sender" not found. This is just a sender not requiring a signature but sending a request package for signature of another user. From this request, I would get a package id and then initiate another request to obtain a signer session token passing this packageid and signerid. Neither user has an account with eSign, not using UI.
Forums
Hi, I want to get document status that when and how many times document is opened. when user fills document fields, as I am getting document summary. Please let me know how it is possible I am using nodejs and showing document in iframe Thanks
Forums
When requesting a signer session token via REST API, we pass the packageId and signerId. How does the signerId: [email protected] match up with the json package? Looks like it goes off what is specified in the roles:signers:email section? string jsonString = "{\"packageId\": \"" + package.PackageId + "\",\"signerId\":\"[email protected]"}"; StringContent jsonContent = new StringContent(jsonString, Encoding.UTF8, "application/json"); var response = httpClient.PostAsync(new Uri(apiUrl) + "/signerAuthenticationTokens/", jsonContent).Result;