How to Toggle the Review Before Completion option using Java SDK?
Friday, August 24, 2018 at 06:33amHi Team,
I'm aware that there is "autocomplete":false in REST API which is used to enable the "Review Before Completion", I was wondering is there an equivalent way in Java SDK? Thanks in advance.
withDialogOnComplete - gives an option for the signer to choose between review before completion/not, but I'm looking a way to default the Review Before Completion.
Best Regards,
Logan
Reply to: How to Toggle the Review Before Completion option using Java SDK?
Friday, August 24, 2018 at 07:10amDocumentPackage documentPackage = newPackageNamed("Test Package API") .withSigner(newSignerWithEmail("[email protected]").withCustomId("Signer1") .withFirstName("1.firstname").withLastName("1.lastname")) .withDocument(newDocumentWithName("testpdf").fromFile("./sources/Test PDF.pdf") .withSignature(acceptanceFor("[email protected]"))) .autocomplete(false) .build();Hope this could help you! DuoReply to: How to Toggle the Review Before Completion option using Java SDK?
Friday, August 24, 2018 at 07:43amReply to: How to Toggle the Review Before Completion option using Java SDK?
Friday, August 24, 2018 at 07:45am