Docusign:动态填充文档中的字段 [英] Docusign: Dynamically Populate Fields In Document

查看:62
本文介绍了Docusign:动态填充文档中的字段的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用docusign发送供应商协议。协议的措词都相同,除了供应商名称和地址。有什么方法可以将信息传递到信封创建脚本(PHP),以动态填充模板文档中的名称和地址字段?

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 the envelope creation script (PHP) to dynamically populate name and address fields on a template document?

推荐答案

是的,您绝对可以在嵌入式签名视图中填充选项卡。这全部通过

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

tabLabel 

请求正文中每个选项卡的属性。例如,如果您登录DocuSign控制台并将两个数据字段(textTabs)添加到信封,其中一个带有标签 email,另一个带有 address标签,则以下JSON正文将根据值传递。

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"
}

这篇关于Docusign:动态填充文档中的字段的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆