Forums
HI All , I have default consent document and three accept only documents and last one include sign. I would like user can't move next document without accept it. (like as default consent document).As far as I know there might be only one consent document on package level. Now user can move next document via navigation button without accept it. How can I do that? Any help will be appreciated.
Forums
Use the .NET sample code https://developer.esignlive.com/guides/feature-guides/document-extraction/ to generate eSign. The field name is [Client1.Capture1] with field type is 'Signature' in PDF file. But get error message Silanis.ESL.SDK.EslServerException: Could not send the package. Exception: The remote server returned an error: (400) Bad Request. HTTP POST on URI https://sandbox.e-signlive.com/api/packages/4sXpv6J-abrL0mKD3U3dJ0gfhIc=.
Forums
Hi, When below line is called, it returns a list of all signers including the sender as one of the signers. IList signers = eslClient.GetPackage(new PackageId("")).Signers; This is the case even though the sender has no documents to sign. Is there a way to exclude a sender from the signer list (if sender does not have any docs to sign)? Thanks, Khatri
Forums
Hi, We have tried to remove the default consent form using the following snippet eslClient.PackageService.DeleteDocument(packageId, "default-consent"); But the electronic disclosure still shows up and our signable PDF is not shown. We are using one of the small samples the works perfectly without the above line. Thanks,
Forums
I'm wondering how I can make the text area name "Commentaire" in the pdf filled correctly. The text in the document does not appear correctly and is always on one line. I'm using a code similar to this : var documentBuilder = DocumentBuilder.NewDocumentNamed("Formulaire d'adhésion") .FromStream(pdfFileStream, DocumentType.PDF) .WithExtractionType(ExtractionType.ACROFIELDS) .EnableExtraction() .WithInjectedField(FieldBuilder.TextArea().WithName("Commentaire").WithValidation(fieldValidatorString).WithValue
Forums
I'm creating an application to get all packages for an account with a date range. I'm using the following call Page completed_packages = eslClient.PackageService.GetUpdatedPackagesWithinDateRange(DocumentPackageStatus.COMPLETED, new PageRequest(index, 50), from, to); This call only returns packages for the account owner. I need to get packages for all senders. How can I get list of all senders' API keys in C#?