Account

Social


Earned badges

Achievement: Latest Unlocked

Topic Started

This user has not created any forum posts.

Replies Created

Approved Answer

Reply to: Java SDK tutorial?

4 votes
Hey Coleman, There are several different resources available for the Java SDK. If you go to https://developer.e-signlive.com/resources/sdk/, you'll find sever resources such as the JavaDoc, quick start guides (currently part of the developer blog), the sdk download, and more. And, of course, if you run into any issues and can't find the answer, you can always ask your questions in this forum. Good luck!

Reply to: Java SDK tutorial?

0 votes
Not a problem at all. As I said above, let us know if you get stuck anywhere and have questions.

Approved Answer

Reply to: How to use the AuditService.GetAudit()?

1 votes
Try something like this:
EslClient eslClient = new EslClient(apiKey, apiUrl);
PackageId packageId = new PackageId("YOUR_PACKAGE_ID");
List myaudit2 = eslClient.AuditService.GetAudit(packageId);
List.Enumerator myenum = myaudit2.GetEnumerator();
while(myenum.MoveNext())
{
                Debug.WriteLine("DateTime - " + myenum.Current.dateTime + ", Type - " + myenum.Current.type + ", User - " + myenum.Current.user + ", Email - " + myenum.Current.email + ", IP - " + myenum.Current.ip + ", Target - " + myenum.Current.target + ", Data - " + myenum.Current.data);
}
Hope this helps!

0 votes
In C# (with the .NET SDK), you can mark as complete with the following code. Note: You will need to upgrade to the 10.10.1 SDK, if not already using it:
EslClient eslClient = new EslClient(apiKey, apiUrl);
PackageId packageId = new PackageId("c69d12d4-e7e9-4e98-8ef5-c25787b1d6e3");
Signer mysigner = eslClient.GetPackage(packageId).GetSigner("[email protected]"); // only need if you want to accept attachment
eslClient.AttachmentRequirementService.AcceptAttachment(packageId, mysigner, "Attachment1"); //accept the attachment as the proper attachment
eslClient.PackageService.MarkComplete(packageId);
If you want to use REST instead, let me know.

Subscriptions

Topics Replies Freshness Views Users

Hello

 

When signer receive the email to sign the document and after clicking the link document is opening.

 

2 1 year 9 months ago 83
Profile picture for user mwilliams

We have a Broker Management System called EPIC which is provided to us by Applied Systems and wonder if you have other clients using this where OneSpan is integrated with EPIC.

1 1 year 11 months ago 49
Profile picture for user mwilliams

There is any specification about the fields that came on the response body of this service?

1 3 years 5 months ago 118
Profile picture for user mwilliams
1 3 years 6 months ago 28
Profile picture for user mwilliams
4 3 years 6 months ago 125
Profile picture for user Duo_Liang
Profile picture for user mwilliams

Code Share

Simple Objective C application that shows how to create a package with documents, using the REST API
  • REST
  • package
  • Documents
  • Objective C
  • Transaction
24 views
3 downloads

Get Templates with Java SDK

Submitted on
Simple Java class showing how to use PackageService.getTemplates() to grab all templates from your account.
  • Java
  • Java SDK
  • template
34 views
14 downloads
Simple example showing how to create a package from a template and push data to existing fields within the template
  • .NET
  • template
  • fields
36 views
51 downloads
Example showing how to download the documents from a package individually, instead of all in a zip file.
141 views
64 downloads
Step by step tutorial on creating a simple template with the UI and then creating a package from it using the .NET SDK
64 views
33 downloads

Subscriptions Release Notes

This user is not subscribed to any release notes.