Docusign: Dynamically Populate Fields In Document

前端 未结 1 623
广开言路
广开言路 2020-12-18 08:26

I am using docusign to send off vendor agreements. The agreements are all the same wording, except for vendor name and address. Is there a way I can pass information to th

相关标签:
1条回答
  • 2020-12-18 08:48

    Yes you can definitely populate tabs in an embedded signing view. This is all controlled through the

    tabLabel 
    

    property of each tab in your request body. For instance, if you login to the DocuSign Console and add two data fields (textTabs) to your envelope where one has the label "email" and the other has a label of "address" then the following JSON body prefills those tabs based on the value passed.

            "tabs": {
            "textTabs": [
                {
                    "tabLabel": "address",
                    "value": "123 Main St. SF, CA"
                },
                {
                    "tabLabel": "email",
                    "value": "sample@email.com"
                }
            ]
        }
    }
    ],
    "status": "sent"
    }
    
    0 讨论(0)
提交回复
热议问题