我正在处理一个包含用于添加值的各种字段的表单(texttabs / listtabs / etc)。
表单分配给两个收件人,其中一个收件人可以访问已被设置为"隐藏"的一半字段。 (true)阻止其他收件人查看个人信息。
我的问题是,是否可以通过API检索表单数据(隐藏值)?在Docusign中完成表单后,我想在API脚本中将这些隐藏值重新附加到最终产品中。我到处搜索但找不到答案。
谢谢, 丹
答案 0 :(得分:2)
是的,可以通过DocuSign REST API完成。它不是很直观,但您可以进行API调用以检索收件人输入的值。
查看获取信封收件人状态 API调用,更重要的是,它是一个可选参数。电话的详细信息如下:
<强> URL:强>
/accounts/{accountId}/envelopes/{envelopeId}/recipients
HTTP方法:
GET
<强>参数:强>
The only required parameter is the envelope ID. If the optional query include_tabs is set to true, the tabs associated with the recipient are returned. If the optional query include_extended is set to true, the extended properties are returned.
- 示例(来自文档) -
GET https://{server}/restapi/{apiVersion}/accounts/{accountId}/envelopes/{envelopeId}/recipients?include_tabs=true
X-DocuSign-Authentication: <DocuSignCredentials><Username>{name}</Username><Password>{password}</Password><IntegratorKey>{integrator_key}</IntegratorKey></DocuSignCredentials>
Accept: application/json
Content-Type: application/json
有关通话的详情,请参阅REST API Guide page 192。