DocuSign填充模板中的数字字段

时间:2015-04-03 23:57:16

标签: docusignapi

我正在测试我使用payload helper制作的DocuSign模板。我可以使用以下正文结构填充自定义文本字段。但是,任何数字字段都未设置。我尝试将它们包含为textTabs,但它们没有被设定。有谁知道这些字段的正确格式?似乎没有numericTabs选项。

    "templateRoles": [
            {
              "tabs": {
                "textTabs": [
                  {"tabLabel": "Address", "value": "5 Main St"},
                  // Phone not getting set
                  {"textLabel": "Phone", "value": "1234567891"},
                ]
              },
              "roleName": "Customer",
              "name": "Customer Name",
              "email": "myemail@gmail.com"
            }
        ]

1 个答案:

答案 0 :(得分:0)

您设置的手机的标签名称中有拼写错误:

{"textLabel": "Phone", "value": "1234567891"},

您需要tabLabel代替textLabel,就像您拥有地址一样

{"tabLabel": "Phone", "value": "1234567891"},

只要你修复它并使用相同的名称,你就可以在模板中命名该字段。