我正在尝试通过模板请求签名并使用RESTAPI预填充一些数据字段。我的任务中唯一不成功的部分是设置数据字段值。带有文档的信封仅与标准标签及其各自的值一起发送。
需要一些见解。
XML Body ...
<envelopeDefinition xmlns="http://www.docusign.com/restapi">
<accountId><%= _accountID %></accountId>
<emailSubject>DocuSign API - Request Template</emailSubject>
<status>sent</status>
<emailSubject>API Call for request from template</emailSubject>
<emailBlurb>This comes from me</emailBlurb>
<templateId><%= _templateID %></templateId>
<templateRoles>
<email>me@me.com</email>
<name>Dean</name>
<roleName>Signer</roleName>
<recipientId>1</recipientId>
<tabs>
<textTabs>
<tabLabel>CompanyName</tabLabel>
<value>Dean Inc</value>
</textTabs>
</tabs>
</templateRoles>
</envelopeDefinition>
答案 0 :(得分:1)
我知道这是旧的并且被遗弃但我想回答以防其他人偶然发现它。我最终在这里找到了一个非常相似的问题:How to pre-fill tabs on a server template with the DocuSign API。解决方案是在<textTabs>
中添加另一个名为<text>
的节点,如下所示:
...
<tabs>
<textTabs>
<text>
<tabLabel>CompanyName</tabLabel>
<value>Dean Inc</value>
</text>
</textTabs>
</tabs>
...
&#13;