docusignapi - Filling out documents with DocuSign embeded -


we redirect user our portal sign documents. 1 of documents, skills checklist, needs completed , signed. possible user go through document , complete form fields within docusign ? i.e., same way user might fill out editable pdf. these check boxes , forms can vary in length 30 check boxes several hundred.

yes can docusign rest api. docusign helps manage entire document workflow through stick-etabs:

http://www.docusign.com/developer-center/explore/features/stick-etabs.

you can add checkboxes, text fields, dates, etc. documents , templates , can use rest api programmatically add them when needed, when have lot several hundred have mentioned. add stick-etabs (such check boxes) through api have add them in json or xml formatted request bodies. generically, list each different tab type want add, such as:

"tabs": {   "signheretabs": [{   }],   "checkboxtabs": [{   }],   "datesignedtabs": [{   }],   ... } 

however please note there different properties different types of tabs. see page rest api guide has more info each tab type:

http://www.docusign.com/p/restapiguide/content/rest%20api%20references/tab%20parameters.htm


Comments

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -