Update a document in a package
Monday, August 27, 2018 at 07:02amI see there is a RESTful API to update an existing document in a package. Is there a function call in .Net SDK to achieve the same thing? Or, do I need to call 'delete document' then call 'add document' if I want to use .Net SDK?
Also, if there are multiple signers in a document and some signers already signed, will there be an error message when I try to update it? I'm assuming all signers will have to re-sign it since the content may be different.
Reply to: Update a document in a package
Tuesday, August 28, 2018 at 10:40amDocumentPackage package1 = PackageBuilder.NewPackageNamed("Test") .WithoutAutomaticCompletion() ... .Build();1. set the package status to "DRAFT" 2. delete the document requiring update 3. add a new document with the same metadata 4.send the package 5. all signers related to this package will receive a notification email again. If you want me to create some code sample for you, you can tell me more about your use case. And hope this could help you! :) Duo