I’m working on updating our Java SDK usage from 2.17 to 6.0.0 and API from v2.0 to v2.1. Given some signature changes I’m comparing with the API references to make sure I’m making the correct changes.
We have a process to create templates, and we set a password to prevent accidental editing - in v2.0 it’s part of the envelope template definition (https://developers.docusign.com/docs/esign-rest-api/v2/reference/templates/templates/create/#schema__envelopetemplate_envelopetemplatedefinition).
In v2.1 at some point I believe the fields in the template definition object were flattened to the envelopeTemplate object, including the `password` field (https://developers.docusign.com/docs/esign-rest-api/reference/templates/templates/create/#schema__envelopetemplate_password). However the documentation for that field (at that link) indicates that it’s the **user’s** password instead of the template password. I think that’s incorrect?
I will at some point probably test this but it would be helpful to have confirmation. There’s nothing indicative in the Java SDK changelog and the release notes for the API are hard to search.