2014-07-24 71 views
0

我們試圖獲取模板uisng API調用的選項卡標籤併成功獲取該選項卡,但我們的要求是使用API​​更新選項卡標籤名稱。#DocuSign API:API標籤更新API

例如: 在選項卡標籤創建過程中,我的DocuSign管理員在標籤中提到First Name作爲FirstNAMe,但映射標籤名稱是FirtsName。

我們可以登錄並搜索模板並更正標籤標籤名稱,但我們需要使用API​​調用進行更新。

請,如果有人能提出在這裏....

回答

0

是的,你可以通過的DocuSign REST API修改現有的收件人標籤。 API文檔介紹了叫你需要詳細做(第198頁):

Modify Recipient Tabs

網址:

/accounts/{accountId}/envelopes/{envelopeId}/recipients/{recipientId}/tabs

格式:

XML, JSON

HTTP方法:

PUT

參數:

tabId(必需)

實施例要求:

PUT https://{server}/restapi/{apiVersion}/accounts/{accountId}/envelopes/{envelopeId}/ 
recipients/{recipientId}/tabs 
X-DocuSign-Authentication: 
<DocuSignCredentials><Username>{name}</Username><Password>{password}</Password><Integrato 
rKey>{integrator_key}</IntegratorKey></DocuSignCredentials> 
Accept: application/json 
Content-Type: application/json 
{ 
    "approveTabs":[{ 
     <Tab information removed> 
    }], 
    "titleTabs":[{ 
     <Tab information removed> 
    }], 
    "signHereTabs":[{ 
     <Tab information removed> 
    }] 
}