Retrieve signing blocks on a document by SignerId
Wednesday, July 13, 2016 at 11:07amHello,
I am wondering if there is a way to retrieve signing blocks on a single document for a specific signer and then check whether or not the signer has signed at least one of the signing blocks on the document.
Thanks.
Reply to: Retrieve signing blocks on a document by SignerId
Thursday, July 14, 2016 at 07:23amReply to: Retrieve signing blocks on a document by SignerId
Thursday, July 14, 2016 at 04:01amEslClient client = new EslClient(key, url); PackageId packageId = new PackageId("-Cd6_Syra8A0EKsE2NX6odsgS4c="); DocumentPackage package = client.GetPackage(packageId); IList signatures = client.ApprovalService.GetAllSignableSignatures(package, "884d8ebdfd71de20", "Signer1");
foreach (Signature signature in signatures)
{
Debug.WriteLine(signature.Accepted.ToString());
} Let me know if this works for you.Reply to: Retrieve signing blocks on a document by SignerId
Thursday, July 14, 2016 at 07:07am