5953 results matched your search criteria
Forum topic
OneSpan Sign
We are using the designer functionality in an iframe inside our application as described in the below reference,
Reference : http://docs.esignlive.com/content/c_esignlive_integrator_s_guide/sdk/e_preparing_documents/designer.htm
Whenever there is an update to the package, we are creating a Sessio
Forum topic
OneSpan Sign
Hi,
I'm having issues setting the expiration date to null.
These are the functions I'm calling:
EslClient eslClient = getEslClient(companyId);
PackageId pkgId = new PackageId(packageId);
DocumentPackage dp = eslClient.GetPackage(pkgId);
dp.ExpiryDate = null;
eslClient.UpdatePackage(pkgId, dp);
Af
Forum topic
OneSpan Sign
Hi,
We found that there are two ways to get signing ceremony URL for signers, and they both seem to work, but not sure which one is the right way of doing it or if one approach is preferred over the other and why.
Here is a sample code:
EslClient eslClient = new EslClient(API_KEY, API_U
Forum topic
OneSpan Sign
Hi,
Is the callback key in notifications returned as a request header? If so, what is the name of that header?
Thanks,
Forum topic
OneSpan Sign
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?
Forum topic
OneSpan Sign
if (!EventHandler.ContainsKey(NotificationEvent.PACKAGE_READY_FOR_COMPLETION))
EventHandler.Add(NotificationEvent.PACKAGE_READY_FOR_COMPLETION, (EventRequest request) =>
{
// RESPONSE TO Set Status to Completed
});
Forum topic
OneSpan Sign
Hi,
I've read through the rest api documentation at (http://docs.e-signlive.com/mc/content/c_esignlive_integrator_s_guide/rest_api/packages.htm) and am interested in finding out if there is a sample code available for invoking the "Create a new document package along with document binaries" API.
A
Forum topic
OneSpan Sign
I want to update the status in my database as soon as user sign the document. I haven't found code to get the status as soon as signer sign the document. I did register all the even using callback example code.
Forum topic
OneSpan Sign
Hi, I want to upload document on package, document uploading working fine. I also want to add roles and approvals through code.
Forum topic
OneSpan Sign
I am using the designer functionality in our application.
The application uses angualrjs framework and ng-include functionality from the angularjs framework. The ng-include will either launch the HTML with iframe for the document designer or It will launch HTML form for data entry.