Account


Earned badges

Achievement: Latest Unlocked

Topic Started

This user has not created any forum posts.

Replies Created

Reply to: Could not update role Exception

0 votes
Hi sudhangi, If you want to update/add signers and documents to an existing package, updatePackage() function won't work. This function only updates package level attributes (settings/descriptions/emailMessage/expireData/etc.) like the sample code does:
 packageToUpdate = PackageBuilder.newPackageNamed(NEW_PACKAGE_NAME)
                .describedAs(NEW_DESCRIPTION)
                .withEmailMessage(NEW_EMAIL_MESSAGE)
                .expiresAt(now().plusMonths(2).toDate())
                .withLanguage(Locale.FRENCH)
                .withVisibility(NEW_VISIBILITY)
                .withNotarized(NEW_NOTARIZED)
                .autocomplete(false)
                .withSettings(settingsToUpdate)
                .build();
Instead, you'd use following two functions to add signers and documents separately:
eslClient.uploadDocuments(PackageId packageId, List documents);
		eslClient.getPackageService().addSigner(PackageId packageId, com.silanis.esl.sdk.Signer signer);
Among them, documents can be bulk uploaded while signers/roles have to be added one by one. And BTW, may I know the SDK version you are currently using? Hope this could help! Duo

Reply to: Signing Ceremony Completed Date

0 votes
Hi Andrew, The best way to retrieve the complete time of signers is to use callback url. You can have an url monitoring callback notifications sending from OneSpan Sign. There's an event named "Recipient completed signing", you can select this event in your Web Portal and the below is the body of the request you will receive:
{"@class":"com.silanis.esl.packages.event.ESLProcessEvent","name":"SIGNER_COMPLETE","sessionUser":"44aafb7c-97b9-40e1-bb59-eb76c7d2a484","packageId":"5n4obeO8jYoPp126Cm-Y3fxdfbo=","message":null,"documentId":null,"createdDate":"2018-06-30T20:12:12.272Z"}
If you want to follow this path but if you are not familiar with how to set up callback notification with OneSpan Sign, I can send more examples to you. Hope this could help you! Duo

Reply to: Signing Ceremony Completed Date

0 votes
Hi Andrew, The callbacks will try a few times (until receive a 200 response from your listening url) and then no more sending post request, instead, OSS will send a failure email to you. So if you concern about missing any callback notification, there're few strategies we suggest to use: 1. if you are embedding signing ceremony into an iFrame, you can retrieve the notification from front-end by JS code (don't need to listen to notification from callback url), you can find the guidance here. 2. if you have a dedicated email address for the account, you could also do an email scraper to back up the "real time" listener. (as we discussed above, OSS will send you a failure email once OSS can't call your url) 3. you can have the listener and a backup batch process to check for "complete time of individual signer" each night in case a notification was missed. The attachment is the example code I created for you by using packageId and signerEmail to retrieve the "signer complete date". Hope this could help you! Duo

Attachments
9_17.zip756 bytes

Subscriptions

Topics Replies Freshness Views Users

In looking at the API reference as well as playing around with the calls in Postman, while Onespan guides users to create a bearer token, often they're not using it, instead passing the API Key in

1 1 month 2 weeks ago 37
Profile picture for user Duo_Liang

In my code I have 2 parameters that I am passing string uniqueId, string coBrand can you elaborate on this comments?

3 1 month 2 weeks ago 26
Profile picture for user Duo_Liang
3 1 month 3 weeks ago 31
Profile picture for user Duo_Liang

Hi, 

I have a method to Retrieve the attachment:

public async Task<byte[]> GetAttachmentContentAsync(string packageId, string attachmentId)
{   

2 1 month 3 weeks ago 14
Profile picture for user Duo_Liang

In my MVC code project testing creating a Package I am trying to add a .WithSignatureStyle and  .WithSignatureType.

5 1 month 3 weeks ago 37
Profile picture for user Duo_Liang

Code Share

Example code shows how to retrieve the opt-out and declined messages. 
  • APEX
  • Decline
  • opted out
14 views

Reminder Schedule (Apex SDK)

Submitted on
Example code shows how to manage reminder schedules.
  • reminder
  • APEX
13 views
8 downloads

Authenticating Signers (Apex SDK)

Submitted on
Example code shows you how to authenticate your singers through Q&A, SMS, and Knowledge-Based Authentication (KBA).
  • SMS
  • q&amp;a
  • kba
  • equifax
  • APEX
  • Signer Authentication
26 views
10 downloads

Signer Management Example (Apex SDK)

Submitted on
Example code shows how to manage signers in your OneSpan Sign packages.
  • signer
  • APEX
  • update signer
22 views
3 downloads

Enable Signer Workflow (Apex SDK)

Submitted on
Example code shows how to set a signer workflow.
  • signer order
  • APEX
16 views
5 downloads

Subscriptions Release Notes

This user is not subscribed to any release notes.