Long time
Monday, August 13, 2018 at 09:13amHello,
I have a template which is has a 47 documents inside it. when I am creating the Package based on this template it is taking long time to generate the document package. it is taking around 47 seconds to be generated. I have tried to do a work around to delete documents from the template before creating the package based on the template but this delete will delete the document from the template inside sandbox. Any Help or another trick to do it. Thanks
Reply to: Long time
Tuesday, August 21, 2018 at 06:52amReply to: Long time
Monday, August 13, 2018 at 09:51am{ "name":"Package created from template through REST API", "status" : "DRAFT", "roles": [ { "id": "be7452c8-3c1e-44c1-af60-17a4fa6180a4", "type": "SIGNER", "signers": [ { "id": "sender", "firstName": "1.firstname", "lastName": "1.lastname", "email": "[email protected]" } ], "name": "sender" }, { "id": "46e1b44e-0b55-418e-bf82-d586c68a2c8c", "type": "SIGNER", "signers": [ { "id": "signer", "firstName": "2.firstname", "lastName": "2.lastname", "email": "[email protected]" } ], "name": "signer" } ], "documents":[ {"id":"doc1 ID"}, {"id":"doc2 ID"}, ... ] }You can add as much documents as you want, just need the document ID. It's not available for SDK, because in SDK, your DocumentPackage object will be converted into ApiPackage object, while ApiPackage object don't have the information for documents. If you are willing to achieve this function with C# REST, I can share some sample codes for you. DuoReply to: Long time
Monday, August 13, 2018 at 10:02amReply to: Long time
Monday, August 13, 2018 at 11:00amReply to: Long time
Monday, August 13, 2018 at 11:19amReply to: Long time
Monday, August 13, 2018 at 12:12pmReply to: Long time
Tuesday, August 14, 2018 at 05:08amReply to: Long time
Tuesday, August 14, 2018 at 05:25amReply to: Long time
Tuesday, August 14, 2018 at 06:02amReply to: Long time
Tuesday, August 14, 2018 at 08:25amReply to: Long time
Friday, August 17, 2018 at 04:35amReply to: Long time
Friday, August 17, 2018 at 06:47amReply to: Long time
Friday, August 17, 2018 at 07:04amReply to: Long time
Friday, August 17, 2018 at 10:06amReply to: Long time
Friday, August 17, 2018 at 10:22amHi nehme, Unfortunately, from previous thread, Field injection only works during document upload because that's the only time where the application processes the document. So when cloning a package from Template, our application won't process the document again and it's impossible to inject fields on an existing document in a template. Duo
Reply to: Long time
Friday, August 17, 2018 at 10:46amReply to: Long time
Friday, August 17, 2018 at 11:43amReply to: Long time
Friday, August 17, 2018 at 11:48amReply to: Long time
Friday, August 17, 2018 at 12:08pmReply to: Long time
Friday, August 17, 2018 at 12:11pmReply to: Long time
Friday, August 17, 2018 at 12:23pmReply to: Long time
Friday, August 17, 2018 at 12:31pmReply to: Long time
Friday, August 17, 2018 at 01:43pmReply to: Long time
Saturday, August 18, 2018 at 05:23pmReply to: Long time
Monday, August 20, 2018 at 04:46amReply to: Long time
Monday, August 20, 2018 at 05:11amReply to: Long time
Monday, August 20, 2018 at 07:21amReply to: Long time
Monday, August 20, 2018 at 07:56amReply to: Long time
Monday, August 20, 2018 at 07:59amReply to: Long time
Monday, August 20, 2018 at 08:06amReply to: Long time
Monday, August 20, 2018 at 08:56amReply to: Long time
Monday, August 20, 2018 at 09:00amReply to: Long time
Monday, August 20, 2018 at 09:16amReply to: Long time
Tuesday, August 21, 2018 at 05:34amReply to: Long time
Tuesday, August 21, 2018 at 05:59amReply to: Long time
Tuesday, August 21, 2018 at 06:06amReply to: Long time
Tuesday, August 21, 2018 at 06:44amReply to: Long time
Wednesday, August 22, 2018 at 03:40amReply to: Long time
Wednesday, August 22, 2018 at 05:10amSilanis.ESL.SDK.SigningStatus signerStatus1 = eslClient.GetSigningStatus(packageId, signerId1, docId1);, you can loop through your documents and grab the signing status of all your docs. Hope this could help you! DuoReply to: Long time
Wednesday, August 22, 2018 at 06:36amReply to: Long time
Thursday, August 23, 2018 at 04:17amCreate a new Package: {"@class":"com.silanis.esl.packages.event.ESLProcessEvent","name":"PACKAGE_CREATE","sessionUser":"18EZDL44xgsX","packageId":"wVdZEaPD2igwUnFGJBjDD0dpO7k=","message":null,"documentId":null,"createdDate":"2018-06-30T20:04:55.384Z"} Send a package {"@class":"com.silanis.esl.packages.event.ESLProcessEvent","name":"PACKAGE_ACTIVATE","sessionUser":"18EZDL44xgsX","packageId":"5n4obeO8jYoPp126Cm-Y3fxdfbo=","message":null,"documentId":null,"createdDate":"2018-06-30T20:09:50.425Z"} Signer 1 accept consent document {"@class":"com.silanis.esl.packages.event.ESLProcessEvent","name":"DOCUMENT_SIGNED","sessionUser":"44aafb7c-97b9-40e1-bb59-eb76c7d2a484","packageId":"5n4obeO8jYoPp126Cm-Y3fxdfbo=","message":null,"documentId":"default-consent","createdDate":"2018-06-30T20:10:51.002Z"} Signer 1 sign a signature block {"@class":"com.silanis.esl.packages.event.ESLProcessEvent","name":"DOCUMENT_SIGNED","sessionUser":"44aafb7c-97b9-40e1-bb59-eb76c7d2a484","packageId":"5n4obeO8jYoPp126Cm-Y3fxdfbo=","message":null,"documentId":"7caf46cdd75f7a411bf8c22793b84fa79d8d180becc40691","createdDate":"2018-06-30T20:12:12.256Z"} Signer 1 finish his part {"@class":"com.silanis.esl.packages.event.ESLProcessEvent","name":"SIGNER_COMPLETE","sessionUser":"44aafb7c-97b9-40e1-bb59-eb76c7d2a484","packageId":"5n4obeO8jYoPp126Cm-Y3fxdfbo=","message":null,"documentId":null,"createdDate":"2018-06-30T20:12:12.272Z"} Package Complete: {"@class":"com.silanis.esl.packages.event.ESLProcessEvent","name":"PACKAGE_COMPLETE","sessionUser":"e00696ec-d6f5-4feb-89c5-a5ce002a6c66","packageId":"5n4obeO8jYoPp126Cm-Y3fxdfbo=","message":null,"documentId":null,"createdDate":"2018-06-30T20:15:01.038Z"} Signer 1 opt out: {"@class":"com.silanis.esl.packages.event.ESLProcessEvent","name":"PACKAGE_OPT_OUT","sessionUser":"b5381b13-991e-4179-9f9b-d4e1ec9d06bb","packageId":"J5tyJalzG49hmDho5b9JdG61T7M=","message":"the personal info is not correct","documentId":null,"createdDate":"2018-06-30T20:16:29.763Z"}If you need other information about the event notification, just tell us! And we can talk about that in another new thread. :) Duo