Getting issue for setting enforceCaptureSignature as true through .NET SDK
Tuesday, September 18, 2018 at 03:25amHello,
I am working with .NET SDK. Currently according to my requirement I need to change my enforceCaptureSignature to true for allowing user for multiple time signing. While searching for solutions I found "https://sandbox.esignlive.com/api/packages/{packageId}". Here through JSON I can modify the value for enforceCaptureSignature value. With the Rest client request I tried for the same while I am getting authorisation error. I tried with "https://sandbox.esignlive.com/api/authenticationTokens/user" for generating token still I am enable to generate token.
Can you please provide me any suggestion/solution for my issue? Or can I update enforceCaptureSignature with some other method?
Thank you
Reply to: Getting issue for setting enforceCaptureSignature as true through .NET SDK
Tuesday, September 18, 2018 at 05:38amReply to: Getting issue for setting enforceCaptureSignature as true through .NET SDK
Tuesday, September 18, 2018 at 10:32pmReply to: Getting issue for setting enforceCaptureSignature as true through .NET SDK
Wednesday, September 19, 2018 at 04:30am.WithSignature(SignatureBuilder.CaptureFor(“[email protected]â€).EnableEnforceCaptureSignature())
. That's why the code doesn't work for you. So in this case, if you still want to use Text Tag Extraction, #1 you can set a package level "enforceCaptureSignature" by #2, if you still want a signature level setting, you can first create the package and leave it DRAFT, then grab your documentPackage object, modify it and update your package then send it. But in this way, you'd make more SDK calls. #3, you can have a try on "Text Anchor Feature" which also allows you to locate your fields by existing text in your pdf. #4, you can try Position Extraction by adding pdf form to your pdf to tell OneSpan Sign your fields' location. Hope this could help you! DuoReply to: Getting issue for setting enforceCaptureSignature as true through .NET SDK
Wednesday, September 19, 2018 at 05:47amReply to: Getting issue for setting enforceCaptureSignature as true through .NET SDK
Wednesday, September 19, 2018 at 05:52am