how to do Enforcing capture signature via JAVA SDK
Friday, June 26, 2020 at 08:50am
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
June 26Created
June 26Last Updated
5 years agoLast Reply
1Replies
31Views
2Users
0Likes
0Links
Duo_Liang | Posts: 3777
Reply to: how to do Enforcing capture signature via JAVA SDK
Friday, June 26, 2020 at 09:28am
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:
Reply to: how to do Enforcing capture signature via JAVA SDK
Friday, June 26, 2020 at 09:28amHi 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