docusignapi - Text Tab Locking -


my application has workflow defines of content needed sign document on docusign platform aside signatures. i'm using parameter in text tabs ensure values can edited within application , workflow:

tabs: {   texttabs: [     {       name: 'name',       tablabel: '\\*label',       value: 'foo',       locked: true     }   ] } 

when value of tab has no content provided, becomes editable field on platform during signing; there way prohibit modification of tab entirely? preference signatures can provided , remainder of document left uneditable.

some options:

  1. if text tab blank, , not want recipient enter information tab not include when creating envelope
  2. you can specify locked=true property. tab not visible signer if locked=true , empty.

Comments