DocuSign - 协作/共享字段

时间:2017-05-31 13:49:13

标签: docusignapi

当我尝试使用协作/共享功能创建字段时,我收到错误代码“REQUIRE_ALL_SHARED_TAB_NOT_ENABLED”。 消息说我“允许共享选项卡未启用”,但我无法在新页面和经典页面中找到DocuSign管理页面上的设置。
我在哪里可以启用此设置?

这是JSON响应:

"emailTabs": [
{
  "shared": "true",
  "requireInitialOnSharedChange": "true",
  "requireAll": "true",
  "name": "emailaddress1",
  "value": "Type your email here",
  "width": 188,
  "required": "true",
  "locked": "false",
  "concealValueOnDocument": "false",
  "disableAutoSize": "true",
  "maxLength": 4000,
  "tabLabel": "\\*emailaddress1",
  "font": "arial",
  "bold": "false",
  "italic": "false",
  "underline": "false",
  "fontColor": "black",
  "fontSize": "size7",
  "documentId": "1",
  "recipientId": "cfa81ae2-466d-408c-9df6-80a320091713",
  "pageNumber": "1",
  "xPosition": "164",
  "yPosition": "359",
  "anchorString": "!!emailaddress1",
  "anchorXOffset": "0",
  "anchorYOffset": "0",
  "tabId": "00000000-0000-0000-0000-000000000000",
  "errorDetails": {
    "errorCode": "REQUIRE_ALL_SHARED_TAB_NOT_ENABLED",
    "message": "Allow Shared Tabs is not enabled on account."
  }
}

1 个答案:

答案 0 :(得分:2)

使用UpdateAccountSettings api启用" 允许共享标签"帐户设置

  

PUT / v2 / accounts / {accountId} / settings

{
 "accountSettings": [
    {
        "name": "allowSharedTabs",
        "value": "true"
    }
 ]
}