Can I move a Package out of Draft Status without re-sending the Package?
Thursday, April 19, 2018 at 05:14amHere 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?
Thursday, April 19, 2018 at 12:42pm