本文介绍了docusign api选项卡不会填充的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我建立了一个包含7个标签的create信封API调用,我设置了值,但不会填充两个字段。公司和标题始终为空。我通过/ envelopes / {templateId} API请求以编程方式设置了标签标签,因此我知道它是正确的。
I've built a create envelope API call that has 7 tabs, I set the values but two fields will not populate. Company and Title are always blank. I set the tab labels programmatically from the /envelopes/{templateId} API request so I know it is correct.
{
"emailSubject": "Test Email",
"emailBlurb": "This is for testing docusign api",
"templateId": "cf5a9348-0d05-44ab-b0ac-8847303aa0ba",
"templateRoles": [
{
"email": "[email protected]",
"name": "Shawn Williams",
"roleName": "Signee",
"tabs": {
"fullNameTabs": [
{
"tabLabel": "Name 67755b0d-2284-4f20-acab-9ea4391f0e15",
"value": "Shawn Williams"
}
],
"companyTabs": [
{
"tabLabel": "Company f9d5d265-9d97-42ba-a6ec-0d36f38b1017",
"value": "SD"
}
],
"titleTabs": [
{
"tabLabel": "Title 35713ae4-3330-4864-b37c-066873fc0d6e",
"value": "MR"
}
],
"ssnTabs": [
{
"tabLabel": "SSN",
"value": "123-45-6789"
}
],
"firstNameTabs": [
{
"tabLabel": "F_Name",
"value": "Shawn"
}
],
"lastNameTabs": [
{
"tabLabel": "L_Name",
"value": "W"
}
],
"emailAddressTabs": [
{
"tabLabel": "Email",
"value": "[email protected]"
}
]
}
}
],
"transactionId": "test-20-id",
"status": "sent"
}
在此先感谢您的帮助。
推荐答案
并非所有DocuSign选项卡都可以填充。有些是根据收件人数据和用户个人资料计算的。
Not all DocuSign tabs can be populated. Some are calculated based on Recipients data and User Profile.
来自:
如果要在信封创建期间填充数据,则 textTabs 可能是更好的选择。
If you want to populate data during envelope creation, textTabs might be a better choice.
另请参阅以下相关答案
- Full list of tabs whose values can be set
- Answer Two
这篇关于docusign api选项卡不会填充的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!