how to use notifySigner method
Thursday, May 28, 2020 at 03:15pmHi
I am trying to use notifySigner via Java SDK, how can I use the below method, what is groupId? how can I create/get groupId via SDK java.
eslClient.getPackageService().notifySigner( packageId, groupId );
Thanks
Wendy
Reply to: how to use notifySigner method
Thursday, May 28, 2020 at 04:56pmHi Wendy,
For individual signers, this function has anther signature:
public void notifySigner(PackageId packageId, String signerEmail, String message)
The second parameter could be either the signer's email or the custom ID. For email message, if you pass in empty string "", it won't override the default signer message.
Duo
Reply to: Hi Wendy, For individual…
Friday, May 29, 2020 at 01:43pmHi Duo,
For individual signers, this function has anther signature:
public void notifySigner(PackageId packageId, String signerEmail, String message), you mentioned that the second parameter could be customer ID, what do you mean customer ID? Do you mean SignerID?
How can I use notifySigner(packgeId, groupID)? how can I get a create via java SDK
Thanks
Wendy
Reply to: how to use notifySigner method
Friday, May 29, 2020 at 02:50pmHi Wendy,
For the "notifySigner(packgeId, groupID)", it only works when the signer is a group. Group has its fixed group ID, therefore it might facilitate your usage. Actually, if you always give signer a custom ID, you might lean towards using the same function "notifySigner(PackageId packageId, String signerEmail, String message)" versus depending on the signer type.
Here, the custom ID should be specified during package creation:
DocumentPackage pkg1 = PackageBuilder.newPackageNamed("Example Package ")
.withSigner(SignerBuilder.newSignerWithEmail("[email protected]" )
.withFirstName("John")
.withLastName("Smith")
.withCustomId("Signer1"))
......
Duo
Reply to: Hi Wendy, For the …
Monday, June 1, 2020 at 08:35amHi Duo,
I tried this method
notifySigner(PackageId packageId, String signerEmail, String message)
I can receive the notify email, but I could not see where the message is set. How can I find out where the message is stored? BTW, when I createPackage, I didn't set message. Also is there is a length limit for the message?
Thanks
Wendy