2017-05-31 26 views
0

當我嘗試創建具有協作/共享功能的字段時,我收到錯誤代碼「REQUIRE_ALL_SHARED_TAB_NOT_ENABLED」。 這條消息說我「允許共享標籤頁未啓用」,但我無法在新的或傳統頁面上找到DocuSign管理頁面上的設置。
我在哪裏可以啓用此設置?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." 
    } 
} 

回答

2

使用UpdateAccountSettings API來啓用 「允許共享選項卡」 帳戶設置

PUT/V2 /賬戶/ {帳戶ID} /設置

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

所以唯一的方法來啓用這個是通過API?管理頁面上沒有選項嗎? –

+0

管理頁面上沒有這樣的選項。 –