Account


Earned badges

Achievement: Latest Unlocked

Topic Started

Topics
I have seen the post regarding the Signingurl from the package. http://docs.e-signlive.com/mc/content/c_esignlive_integrator_s_guide/rest_api/signing_url.htm In this example it is getting the signi
I have seen the post of creating the package from the existing template using .NET SDK. https://developer.esignlive.com/code-share/create-template-use-create-package-net/ Is it possible using REST AP
Is there any way how we can authenticate the signing process using email address rather than the phonenumber. The scenario to be more precise is that after eslClient.SendPackage(packageId); When we g
I have a document that has got like 200 fields.
I have seen the example of GetCompletedPackagesWithinDateRangeExample.cs in github from the following link

Replies Created

Reply to: Text Anchor - multiple locations

0 votes
Hi Williams, I have used following lines of code to insert 2 fields (Signature field and SignatureDate field) in multiple locations. Signatures are appearing in the multiple locations but I could not insert any SignatureDate field. for (int i = 0; i occurrencesSign; i++) { mydoc.Signatures.Add(SignatureBuilder.SignatureFor("[email protected]") .WithPositionAnchor(TextAnchorBuilder.NewTextAnchor("\\s1\\") .AtPosition(TextAnchorPosition.TOPRIGHT) .WithSize(200, 50) .WithOffset(0, -40) .WithCharacter(0) .WithOccurrence(i)).Build()); } for (int i = 0; i occurrencesDate; i++) { mydoc.Fields.Add(FieldBuilder.SignatureDate() .WithPositionAnchor(TextAnchorBuilder.NewTextAnchor("\\d1\\") .AtPosition(TextAnchorPosition.TOPRIGHT) .WithSize(200, 50) .WithOffset(50, -40) .WithCharacter(0) .WithOccurrence(i)).Build()); } DocumentPackage superDuperPackage = PackageBuilder.NewPackageNamed("Text Anchor Extraction Example .NET SDK") .WithSettings(DocumentPackageSettingsBuilder.NewDocumentPackageSettings() .WithHandOverLinkHref("https://secure.anchorgeneral.com") .WithHandOverLinkText("Exit From ESignLive") .WithHandOverLinkTooltip("Exit ESignLive")) .WithSigner(SignerBuilder.NewSignerWithEmail(myEmail1) .WithFirstName("John") .WithLastName("Smith") .WithCustomId("client") .SigningOrder(1)) .Build(); superDuperPackage.Documents.Add(mydoc); PackageId packageId = eslClient.CreatePackage(superDuperPackage); eslClient.SendPackage(packageId); Can you help me solve my issue. I am using .NET SKD for my purpose. Thanks, Sumit

Reply to: Download pdf file instead of zip file

0 votes
Thank you Michael for your response. Can you please tell me how can I get the document Id from the e-sign live. pdfDownloadedBytes = eslClient.DownloadDocument takes 2 arguments i.e. package id and documentid. I would like to know where can we get the document id from the e-sign live. -Sumit

Reply to: Download pdf file instead of zip file

0 votes
Document doc2 = eslClient.GetPackage(packageId).GetDocument("sampleAgreement"); string docID = doc2.Id; This is what I have done to get the document id. And it worked for me. Thank you Michael for your support. -Sumit

Subscriptions

Topics Replies Freshness Views Users
I have seen the post regarding the Signingurl from the package. http://docs.e-signlive.com/mc/content/c_esignlive_integrator_s_guide/rest_api/signing_url.htm In this example it is getting the signi
3 7 years 10 months ago 130
Profile picture for user harishaidary
I have seen the post of creating the package from the existing template using .NET SDK. https://developer.esignlive.com/code-share/create-template-use-create-package-net/ Is it possible using REST AP
2 7 years 11 months ago 49
Profile picture for user harishaidary
Is there any way how we can authenticate the signing process using email address rather than the phonenumber. The scenario to be more precise is that after eslClient.SendPackage(packageId); When we g
1 7 years 11 months ago 15
Profile picture for user harishaidary
I have a document that has got like 200 fields.
3 7 years 11 months ago 47
Profile picture for user harishaidary
I have seen the example of GetCompletedPackagesWithinDateRangeExample.cs in github from the following link
8 4 years 3 months ago 152
Profile picture for user Duo_Liang
Profile picture for user mwilliams

Code Share

This user has not submitted any code shares.

Subscriptions Release Notes

This user is not subscribed to any release notes.