Ability to decline for a specific signer
Tuesday, April 9, 2024 at 12:29pmHi!
We are creating a package and sending it to our customers to sign.
Not sure if there is a way to give decline option to a specific signer?
Some code example in JAVA:
DocumentPackageSettingsBuilder documentPackageSettingsBuilder =
DocumentPackageSettingsBuilder.newDocumentPackageSettings()
.withoutOptOut()
.withDecline()
.withoutLanguageDropDown();
PackageBuilder packageBuilder = PackageBuilder.newPackageNamed(contractPackage.getName())
.describedAs(packageDescription)
.withSigner(customer) // Remove decline option for this signer
.withSigner(internal) // Have decline option for only this signer
.withSettings(documentPackageSettingsBuilder);
So we want our customers not to have a decline option and only our internal signers have this option.
Is this possible?
Reply to: Ability to decline for a specific signer
Tuesday, April 9, 2024 at 12:35pmHi Soheil,
Thanks for your post!
To my knowledge, .withDecline() setting applies to all signers and it's not feasible to only provide decline option to certain signers.
Duo
Reply to: Ability to decline for a specific signer
Tuesday, April 9, 2024 at 12:48pmOh, that is unfortunate. Thank you, Duo, for your prompt response!