In a document with multiple signatures how to insert the date of the first sign
Thursday, July 18, 2019 at 02:52pm I am using the Silanis.ESL API in C# and am having the following issue.
In a document with multiple signatures I would like to insert the date of the first signature (chronologically) at a specified location on the document.
Thank you!
Reply to: In a document with multiple signatures how to insert the date of the first sign
Friday, July 19, 2019 at 04:55amEslClient eslClient = new EslClient(API_KEY, API_URL); DocumentPackage pkg1 = PackageBuilder.NewPackageNamed("Example Package " + System.DateTime.Now) .WithSigner(SignerBuilder.NewSignerWithEmail("[email protected]") .WithFirstName("John") .WithLastName("Smith")) .WithDocument(DocumentBuilder.NewDocumentNamed("document 1") .FromFile("P:\\Documents\\documents-example\\Test PDF.pdf") .WithSignature(SignatureBuilder.SignatureFor("[email protected]") .OnPage(0) .AtPosition(100, 100) .WithSize(250, 75) .WithField(FieldBuilder.SignatureDate() .AtPosition(100,200) .OnPage(0))) .WithSignature(SignatureBuilder.SignatureFor("[email protected]") .OnPage(0) .AtPosition(200, 100) .WithSize(250, 75))) .Build(); PackageId createPackageOneStep = eslClient.CreatePackageOneStep(pkg1);Please advise. DuoReply to: In a document with multiple signatures how to insert the date of the first sign
Monday, July 22, 2019 at 01:31pmReply to: In a document with multiple signatures how to insert the date of the first sign
Tuesday, July 23, 2019 at 06:22amReply to: In a document with multiple signatures how to insert the date of the first sign
Tuesday, July 30, 2019 at 11:29am