Create a Template
Tuesday, July 31, 2018 at 08:59amHello,
I want to check with you about a case I am facing. Suppose I have created a template from UI and this template has 3 documents to be signed, while creating the document based on this template, I want to sign only Doc1 and Doc3 but not to sign doc2, so how I can do this?
My template has Doc1, and DOc2 and Doc3.
Thanks
Reply to: Create a Template
Tuesday, July 31, 2018 at 06:17pmReply to: Create a Template
Wednesday, August 1, 2018 at 03:20amReply to: Create a Template
Thursday, August 2, 2018 at 02:50am{ "name":"Package created from template through REST API", "description":"Package created with the REST API", "status" : "SENT", "roles": [ { "id": "PlaceholderId1", "type": "SIGNER", "signers": [ { "id": "PlaceholderId1", "firstName": "1.firstname", "lastName": "1.lastname", "email": "[email protected]" } ], "name": "PlaceholderId1" }, { "id": "PlaceholderId2", "type": "SIGNER", "signers": [ { "id": "PlaceholderId2", "firstName": "2.firstname", "lastName": "2.lastname", "email": "[email protected]" } ], "name": "PlaceholderId2" } ], "documents": [ { "id": "default-consent" }, { "id": "673a632cd9f77ca10axxxxxxx74c04cb295" } ] }As you noticed, in the "document" block, you can choose how many documents you want to include in your new package. If you have 3 docs in template and only wants to include Doc1 and Doc3, you can only put two documents with their IDs(minimum payload requirement), so Doc 2 won't appear in your new package. And this function is currently not available in SDK, so you may need to send this function call by C# REST way. Or simply, you can create a package from Template, and leave the new package in "DRAFT" status. Then you delete the document(s) you want, and you send the package. This will cause more API calls, but it works. And my suggestion is the first approach. Duo