SignerChange in a transaction
Monday, October 15, 2018 at 09:25amHello,
I'm trying to change a signer using .Net API's as below. The code runs perfectly but not sure if the change happened at eSignLive side or not.When the new signer try to access the document he gets an unexpected error. Can you confirm if this is the correct way to change the signer using .Net API's.
PackageId packId = new PackageId(DBItem["Package_x0020_ID"].ToString());
eslClient.ChangePackageStatusToDraft(packId);
Signer newSigner = SignerBuilder.NewSignerWithEmail(NewEmail1).WithCustomId(RO1").WithFirstName(FirstName).WithLastName(LastName).Build();
eslClient.PackageService.UpdateSigner(packId, newSigner );
eslClient.SendPackage(packId);
Thanks,
Reply to: SignerChange in a transaction
Monday, October 15, 2018 at 11:03amReply to: SignerChange in a transaction
Tuesday, October 16, 2018 at 09:55am