Docusign不显示tabLabels而是显示名称

时间:2015-06-08 16:26:40

标签: php api rest symfony docusignapi

我正在使用Docusign的REST API创建模板并将其发送给客户进行签名 - 一切正常但模板不显示选项卡的标签(textTabs),只显示其名称 我在一个信封里发送所有东西,一个项目看起来像这样:

"textTabs": [
        {
          "anchorString": "app_contractbundle_contract_masterAgreement_salesforceId",
          "anchorUnits": "pixels",
          "anchorXOffset": 105,
          "anchorYOffset": -3,
          "documentId": 1,
          "name": "masterAgreement_salesforceId",   - this is displayed in the template
          "pageNumber": null,
          "xPosition": 0,
          "yPosition": 0,
          "tabLabel": "Salesforce ID",   - this should be displayed
          "value": null,
          "fontSize": null,
          "locked": true,
          "required": true
        },

谢谢!

1 个答案:

答案 0 :(得分:1)

API文档中未详细记录,但name属性用于标签上的帮助提示,而不是tabLabel。可以切换您的值,也可以将name设置为与tabLabel相同的内容。