Soheil

Ability to decline for a specific signer

0 votes

Hi!

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?


Approved Answer

Reply to: Ability to decline for a specific signer

1 votes

Hi 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

Duo Liang OneSpan Evangelism and Partner Integrations Developer


Reply to: Ability to decline for a specific signer

0 votes

Oh, that is unfortunate. Thank you, Duo, for your prompt response!


Hello! Looks like you're enjoying the discussion, but haven't signed up for an account.

When you create an account, we remember exactly what you've read, so you always come right back where you left off