916 results matched your search criteria
Forum topic
Intelligent Adaptive Authentication
I have created a OneSpan community account but could not get an access to the features of the Sandbox API. How can I get access to it?
Forum topic
OneSpan Sign
I've heard email mentioned as an alternative to using the REST API to retrieve completed packages. We have the ability to create an email address and any attachments sent to that email address get imported directly into our imaging system.
Forum topic
OneSpan Sign
Hi,
We have implemented the Reminder emails to the signers by given API and refering the below link:
Reference link:
Setting Reminders Guide
Currently we are getting the reminder emails not on the next day.
Forum topic
OneSpan Sign
Hi All,
Hope someone can shed some light on what i am doing wrong.
In salesforce apex code I am creating package
DateTime dT = System.now();
dT.addDays(7);
ESignLiveExamples.createPackageWithDocumentsExample(
'Demo12', true, 'Demo12 description', dT, 'Hello World, Demo12 is READY'
);
Works gre
Forum topic
OneSpan Sign
Hi Team,
I am Creating some application to Perform Operation on the Packages and Since Last two Hours The API is not working Below URL i have tried
https://sandbox.esignlive.com
https://sandbox.e-signlive.ca"
"One or more errors occurred.An error occurred while sending the request.
The underlying
Forum topic
OneSpan Sign
Hi Team,
Can anyone provide me the sample JSON for Create Package API which include below features:
1. Reminder Schedule.
2. Review Before Completion.
3. Templates.
Thanks in Advance.
Forum topic
OneSpan Sign
POST /account/senders/{senderUid}/resetpassword
I'm using the above with the REST API to attempt to reset passwords for senders in an account.
Forum topic
OneSpan Sign
Hi,
We have been trying to sign all documents using the canadian REST API (e-signlive.ca/api)
We tried creating a package with the code provided on https://developer.esignlive.com/guides/feature-guides/sign-documents/ .
We added a role ('Sender') and approval for this role.
{
"name":"Cont
Forum topic
OneSpan Sign
I'm creating an application to get all packages for an account with a date range.
I'm using the following call
Page completed_packages = eslClient.PackageService.GetUpdatedPackagesWithinDateRange(DocumentPackageStatus.COMPLETED, new PageRequest(index, 50), from, to);
T