我们正在尝试获取模板uisng API调用的标签标签并成功获取,但我们的要求是使用API更新标签标签名称。
实施例: 在标签标签创建过程中,我的DocuSign管理员首先在标签中提到名称为FirstNAMe,但标签名称为FirtsName。
我们可以登录并搜索模板并更正其中的标签标签名称,但我们需要使用API调用进行更新。
如果有人可以推荐这里......
答案 0 :(得分:0)
是的,您可以通过DocuSign REST API修改现有的收件人选项卡。 API文档描述了您需要进行的详细呼叫(第198页):
URL:
/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>
}]
}