how to check if a signer is lock via JAVA SDK
Friday, May 29, 2020 at 01:47pmI'd like to know how to check if a signer is locked via JAVA SDK?
Thanks,
Wendy
OneSpan Introduces DigipassONE, Bringing a Unified Platform Approach to Authentication Modernization
A new authentication platform helps financial institutions support diverse customer authentication preferences while modernizing at their own pace Learn More
I'd like to know how to check if a signer is locked via JAVA SDK?
Thanks,
Wendy
Reply to: how to check if a signer is lock via JAVA SDK
Friday, May 29, 2020 at 02:29pmHi Wendy,
Try use below code:
DocumentPackage package1 = eslClient.getPackage(packageId);
boolean locked = package1.getSigner("signer_email").isLocked();
Duo
Reply to: Hi Wendy, Try use below…
Friday, May 29, 2020 at 02:47pmThanks Duo for the quick reply.
Wendy