Discard Draft
Monday, July 13, 2020 at 01:58pmHi,
Is there a way using the .NET SDK, to discard a draft version of the transaction and go back to its previous in-progress version?
Thanks
Hi,
Is there a way using the .NET SDK, to discard a draft version of the transaction and go back to its previous in-progress version?
Thanks
Reply to: Discard Draft
Monday, July 13, 2020 at 04:12pmHi Anu,
Do you mean that for an on-going transaction, you've changed the status to DRAFT and now want to send again? If that's the case, simply resend it by:
eslClient.SendPackage(packageId); //draft to sent
Also refers to the "Modify Status of a Package" guide for more information.
Duo
Reply to: Discard Draft
Tuesday, July 14, 2020 at 07:12amHi Duo,
No, I was asking for a kind of rollback of all the changes done in draft ( like status change to draft, signer updates or additions or deletes) and go back to the original version before the transaction was made draft to start editing (assuming the transaction was submitted and was in Progress before it was changed to draft programmatically)
Thank you.