wendyguo

how to do Enforcing capture signature via JAVA SDK

0 votes

Hi

is it possible to do Enforcing capture signature via JAVA SDK? if yes, could you please show me the code sample?

 

Thanks

Wendy

 


Reply to: how to do Enforcing capture signature via JAVA SDK

0 votes

Hi Wendy,

 

Enforce Capture Signature requires your signer to draw their signature on any given capture signature, versus automatically replicates the first drawn signature. It can be specified at both package and signature level, see below: 

 

Package Level:  

            .withSettings(DocumentPackageSettingsBuilder.newDocumentPackageSettings()
                                .withEnforceCaptureSignature()
                            )

 

Signature Level:

               .withSignature(SignatureBuilder.captureFor(signerEmail)

                               .onPage(0)
                              .atPosition(100, 200)
                              .enableEnforceCaptureSignature()

                        )
 

 

Duo

Duo Liang OneSpan Evangelism and Partner Integrations Developer


Hello! Looks like you're enjoying the discussion, but haven't signed up for an account.

When you create an account, we remember exactly what you've read, so you always come right back where you left off