how to do Enforcing capture signature via JAVA SDK
Friday, June 26, 2020 at 08:50amHi
is it possible to do Enforcing capture signature via JAVA SDK? if yes, could you please show me the code sample?
Thanks
Wendy
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
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