How can I remove the default document called Electronic Disclosures and Signatures Consent when I am creating the package with the java SDK
Thursday, April 23, 2020 at 01:10pm
I would like to delete the default document that the package has when it is created, How can I do that?
My java SDK version is: 11.33
Reply to: How can I remove the default document called Electronic Disclosures and Signatures Consent when I am creating the package with the java SDK
Thursday, April 23, 2020 at 01:27pmHi JaviOneSpan,
If you wish to remove the default consent from all newly created packages, you can contact our support team ([email protected]) and remove it from your account level. You can optionally send them your custom default consent and override the default one.
If only for certain packages, you can delete them after package has been created, but before sending, using below code:
PackageId packageId = eslClient.createPackageOneStep(pkg1); //create package in one step
eslClient.getPackageService().deleteDocument(packageId, "default-consent"); //delete default consent
eslClient.sendPackage(packageId); //send package
Duo
Reply to: How can I remove the default document called Electronic Disclosures and Signatures Consent when I am creating the package with the java SDK
Friday, April 24, 2020 at 11:28amThank you!