Keep Package Open Util Explicit Close
Friday, July 31, 2020 at 01:19pmDoes a package automatically complete and close when the last signer signs? Is it possible to keep the package open - so we add another document for example - until we call an explicit operation to close/complete the package (even if everyone has completed signing)?
Reply to: Keep Package Open Util Explicit Close
Friday, July 31, 2020 at 01:38pmHi Michael,
There's a setting "Review Before Completion" allows you to prevent package from auto-complete, use below Java SDK code:
DocumentPackage pkg1 = PackageBuilder.newPackageNamed("Example Package " + System.currentTimeMillis())
.autocomplete(false)
......
From JSON's perspective, this attribute "autocomplete" is hosted at the root of package JSON.
Duo
Reply to: Hi Michael, There's a…
Friday, July 31, 2020 at 03:32pmAs always, thank you for the prompt reply. I cant say enough about the support we have been getting here.