Forums
I have registered http://xyz.com/dir/api/CallbackLog/Log as callback Url on account page. I have also created API controller method public static void Log(CallbackLogModel model) { ......... } where model is JSON model I expect to be posted to the specified url. Also based on your documentation I expect that JSON will have following structure. public class CallbackLogModel { public string name { get; set; } public string sessionUser { get; set; } public string packageId { get; set; } public string message { get; set; } public string documentId
Forums
Hello, I'm trying to integrate eSign into my application using the REST API. I haven't been able to figure out how to create a package with signature field coordinates extracted from a PDF which already contains signature fields. Is there an available sample demonstrating how to ensure that the package detects the signature fields in the PDF (Rather than having to specify the coordinates of the signature field)? I've seen such samples for the SDKs, but have been unable to find one for the REST API. Thank you
Forums
Hi, We are trying to use the REST API for creating packages, documents etc and currently we are using the API key in the request header to send the requests. However, we are not sure if we need to use the Authentication Token while sending the requests or use the API key in the request header. We got the Authentication Token as per the documentation in the below link: http://docs.e-signlive.com/doku.php?id=esl:api:e-signlive_session_creation#post_authenticationtokens However, we are not sure how to use this token in the requests we send.
Forums
Hi Silanis team- I am attempting to generate hyperlinks directly to a document in a package for a particular signer role, with authentication. I am currently successfully generating the link with this pattern: https://sandbox.esignlive.com/auth?signerAuthenticationToken={token}&target=https%3a%2f%2fsandbox.esignlive.com%2fpackages%2{packageId}%2fdocuments%2f{documentId} This brings me to the document fine, but it shows the "signers dropdown". I've also tried with the session token, which also authenticates fine, and gets me directly to the doc, but also shows the signer dropdown.
Forums
Hi! Can I embed the creation flow of the document (package?) into my web UI such that my user can upload a document, affix the signature tags, and then send it out for a signature? If so can you point me to the documentation on how to do this? I am not using an SDK, i.e. I use Python, javascript, and HTML as my stack. Thank you!