You can definitely set the order of signing for your documents. Below is a sample code on how you would go about setting the document workflow:
//create a packageId using you packageId string
PackageId packageId = new PackageId("d9355f04-9bb2-4219-b9fa-734f2650a939");
//get your package
DocumentPackage myPackage = eslClient.getPackage(packageId);
myPackage.getDocument("First Document").setIndex(2);
myPackage.getDocument("Second Document").setIndex(1);
eslClient.getPackageService().orderDocuments(myPackage);
Does this functionality exist in the .Net SDK or in the REST API? I need to do the same thing. I don't see a setIndex call. Also,is the document index 0 based or 1 based?
Thanks
Colleen
Reply to: Forcing a defined order for documents
Thursday, January 14, 2016 at 08:42amReply to: Forcing a defined order for documents
Thursday, January 14, 2016 at 08:47amReply to: Forcing a defined order for documents
Thursday, January 14, 2016 at 08:51amReply to: Forcing a defined order for documents
Thursday, January 14, 2016 at 09:00amReply to: Forcing a defined order for documents
Friday, April 15, 2016 at 07:09amReply to: Forcing a defined order for documents
Friday, April 15, 2016 at 07:41am