Hi all,
I have some issue creating my signature procedure.
The need is that we sent out a procedure to our client to sign.
- When the client open the link, they are NOT asked to authenticate with SMS.
- Once the client read the whole doc and want to sign, they click on sign button and only then they are requested to authenticate with SMS on their phone.
Here is my current code snippet
signer.setRequireIdLookup("true");
signer.setRecipientId(String.valueOf(order));
RecipientSignatureProvider recipientSignatureProvider = new RecipientSignatureProvider();
recipientSignatureProvider.setSignatureProviderName("UniversalSignaturePen_OpenTrust_Hash_TSP");
RecipientSignatureProviderOptions recipientSignatureProviderOptions = new RecipientSignatureProviderOptions();
recipientSignatureProviderOptions.setSms(phone); recipientSignatureProvider.setSignatureProviderOptions(recipientSignatureProviderOptions);
signer.setRecipientSignatureProviders(List.of(recipientSignatureProvider));
But currently, the client is still requested to authenticate at step 1.
What configuration did I miss to overcome that?