Hide Signature
Friday, January 4, 2019 at 04:58amHello,
I have a form to be signed, inside this form there are 5 signatures for same person or email, can I have one of these signature and keep the other signatures active.
Thanks,
Nehme
OneSpan Introduces DigipassONE, Bringing a Unified Platform Approach to Authentication Modernization
A new authentication platform helps financial institutions support diverse customer authentication preferences while modernizing at their own pace Learn More
Reply to: Hide Signature
Friday, January 4, 2019 at 06:06amReply to: Hide Signature
Friday, January 4, 2019 at 06:42amReply to: Hide Signature
Friday, January 4, 2019 at 07:04amReply to: Hide Signature
Friday, January 4, 2019 at 07:07amReply to: Hide Signature
Friday, January 4, 2019 at 07:20amReply to: Hide Signature
Friday, January 4, 2019 at 07:50amReply to: Hide Signature
Friday, January 4, 2019 at 08:10amReply to: Hide Signature
Friday, January 4, 2019 at 09:26amReply to: Hide Signature
Friday, January 4, 2019 at 10:29amString signerEmail = "signer_email"; DocumentPackage pkg = eslClient.GetPackage(new PackageId("package_id")); Document doc = pkg.GetDocument("document_name"); List signerSignatures = doc.Signatures.FindAll(s => s.SignerEmail.Equals(signerEmail));
signerSignatures.Sort((x, y) => {
if (x.Page = y.Page && x.Y = y.Y)
return -1;
else
return 1;
});
signerSignatures.ForEach(s => Debug.WriteLine(s.Id.Id)); As a result, all signatures IDs belonging to this signer are sorted in location order: So you can visually determine which approval to delete. Hope this could help! Duo