Updating signer email address on sent package
Friday, January 27, 2017 at 10:23amHi,
I was wondering if it was possible to update a signer's email address after a package has been sent? I was looking at the Java SDK and noticed this:
Signer signer1 = eslClient.getPackageService().getSigner(packageId, "insured1");
Which successfully returns the signer I'm attempting to update, but I only see getEmail(). There is no method to set the email address.
Is there some other way to update a signer's email address from a retrieved package?
Thanks!
Reply to: Updating signer email address on sent package
Friday, January 27, 2017 at 10:53amSigner signerToUpdate = SignerBuilder.newSignerWithEmail("[email protected]") .withFirstName("Mary") .withLastName("Doe") .withCustomId("signer1") .build(); eslClient.getPackageService().updateSigner(packageId, signerToUpdate);Make sure that your new signer has the same custom id as the signer you want to update. Note, that this can only be done if the signer hasn't begun signing any documents in the transaction. Another thing you can also do is to allow your signer to reassign someone else to sign in their stead. https://developer.esignlive.com/guides/feature-guides/change-signer/ Let me know.Reply to: Updating signer email address on sent package
Monday, February 13, 2017 at 08:42am