docusign api选项卡不会填充 [英] docusign api tabs wont populate

查看:127
本文介绍了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": "swilliams@email.com",
      "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": "swilliams@email.org"
          }
        ]
      }
    }
  ],
  "transactionId": "test-20-id",
  "status": "sent"
}

在此先感谢您的帮助。

推荐答案

并非所有DocuSign选项卡都可以填充。有些是根据收件人数据和用户个人资料计算的。

Not all DocuSign tabs can be populated. Some are calculated based on Recipients data and User Profile.

来自文档


某些标签会自动填充收件人的数据(例如 emailTabs fullNameTabs ),而其他则需要签名者输入一些信息( textTabs )或做出选择( listTabs checkboxTabs radioGroupTabs )。 p>

Some tabs automatically populate with the recipient's data (such as emailTabs or fullNameTabs) while others require the signer to enter some information (textTabs) or make a choice (listTabs, checkboxTabs, radioGroupTabs).

如果要在信封创建期间填充数据,则 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选项卡不会填充的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

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