Inbar Gazit
Inbar Gazit
For your first question, the answer is - you can only do that if you have some metadata in the template/envelope to indicate it. https://www.docusign.com/blog/developers/the-trenches-track-your-templates-envelope-custom-fields can help show you how...
as for your second question, not sure what "group" means, but you can look into how to search for envelopes by various meta-data here - https://developers.docusign.com/docs/esign-rest-api/esign101/concepts/envelopes/search/
I don't believe there's a way to do that, I will ask
actually, I am wrong, in the search_text query parameter you can provide the name of the signing group. That should work.
we will update the documentation to reflect this.
sorry for the delay @gh0st , not it's not user groups, signing groups are different - https://developers.docusign.com/docs/esign-rest-api/reference/SigningGroups/SigningGroups/list/ User Groups cannot be used in the search.
what do you pass for documentId?
See code in https://github.com/docusign/code-examples-node/blob/master/lib/eSignature/examples/envelopeGetDoc.js which work ok for me.
``` let mimetype; if (pdfFile) { mimetype = "application/pdf"; } else if (docItem.type === "zip") { mimetype = "application/zip"; } else { mimetype = "application/octet-stream"; } ```
@escallin , you are correct, we do not yet have documentation. I'm sorry for that, we'll try to get some documentation in the future. In the interim - do you...