gyurko

Can I move a Package out of Draft Status without re-sending the Package?

0 votes
Here is the scenario. I need to change the Expiration Date of several packages that are about to expire out 30 Days. I do not want to send emails again because this is an internal requirement. if (DocumentExists) { eslClient.ChangePackageStatusToDraft(ESignId); DocumentPackage GetExistingPackage = eslClient.GetPackage(ESignId); DocumentPackage UpdateExpiration = PackageBuilder.NewPackageNamed(SOF) .ExpiresOn(ExpirationDate) .Build(); eslClient.UpdatePackage(ESignId, UpdateExpiration); eslClient.SendPackage(ESignId); } Is there a way to move it Back to the InBox using the .Net Sdk and not Send emails?

Reply to: Can I move a Package out of Draft Status without re-sending the Package?

0 votes
Hi, What I can suggest is to disable the activation email (email that is sent initially to sign the documents), and use the notify email feature (https://developer.esignlive.com/guides/feature-guides/notify-signers/) to send the email. So essentially, 1. create and send package 2. use notify feature to send the emails to all the signers 3. change package status to draft and update the expiry date 4. resend package This way, the email will not be resent to the signers. To disable the activation email, you will need to send support a request ([email protected])
Haris Haidary OneSpan Technical Consultant

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