Reputation: 3718
I have a document that needs to be signed but the document has couple of fields that are customized for the particular person that needs to sign, and I want it to be pre-populated in the document before he signs, this is in my case the job
Is it possible to pre populate the some fields and then generate a url and display an iframe with that document?
Thanks
Upvotes: 0
Views: 1575
Reputation: 3335
Yes this is absolutely possible.
In general you will go through three steps:
In step #2 is where you will be providing an envelope definition. My advice to you is to use templates because then you can lay out the field visually and give them labels. In your request in step #2 you will have to provide values in the following format. JSON is below, but it's also possible with XML.
"tabs": {
"textTabs": [
{
"tabLabel": "address",
"value": "123 Main St. SF, CA"
},
{
"tabLabel": "email",
"value": "[email protected]"
}
]
}
Here is another answer to this question. Docusign: Dynamically Populate Fields In Document
Upvotes: 4