Docusignapi 是否可以从已签名的DocuSign文档中检索输入的标记值

Docusignapi 是否可以从已签名的DocuSign文档中检索输入的标记值,docusignapi,Docusignapi,我正在使用docusignrestapi使用/envelopes/{envelopeID}/views/recipient调用为预定义文档模板创建嵌入式签名。我知道在创建信封时可以预先填充标记值,但在签名完成后,是否可以检索收件人在给定标记字段中实际提供的值,以便在应用程序中使用?如果是这样,有人举个例子吗?听起来您正试图通过可选的查询include_选项卡获取信封收件人状态 第133页 请求示例 GET https://{server}/restapi/{apiVersion}/account

我正在使用docusignrestapi使用/envelopes/{envelopeID}/views/recipient调用为预定义文档模板创建嵌入式签名。我知道在创建信封时可以预先填充标记值,但在签名完成后,是否可以检索收件人在给定标记字段中实际提供的值,以便在应用程序中使用?如果是这样,有人举个例子吗?

听起来您正试图通过可选的查询include_选项卡获取信封收件人状态

第133页

请求示例

GET https://{server}/restapi/{apiVersion}/accounts/{accountId}/envelopes/{envelopeId
    }/recipients/?include_tabs=true

X-DocuSign-Authentication:
<DocuSignCredentials><Username>{name}</Username><Password>{password}</Password><Integrato
rKey>{integrator_key}</IntegratorKey></DocuSignCredentials>
Accept: application/json
Content-Type: application/json

是的,至少有两种方法可以从已签名(已完成)的文档中检索选项卡值。我相信贾斯汀的回答是一种方式。您还可以为收件人使用获取选项卡信息API调用,该调用将返回选项卡信息(包括值):

网址:

  • /帐户/{accountId}/envelopes/{envelopeId}/recipientId}/tabs
方法:

  • 得到
DocuSign中的示例:

获取https://{server}/restapi/{apiVersion}/accounts/{accountId}/信封/{envelopeId}/recipientId}/tabs
X-DocuSign-Authentication:{name}{password}{integrator\u key}
接受:application/json
内容类型:application/json
样本响应:

    {
      "approveTabs":[{
        <Tab information removed>
      }],
      "textTabs":[{
        <Tab information removed>
      }],
      "signHereTabs":[{
        ...
     }]
    }
{
“approveTabs”:[{
}],
“文本选项卡”:[{
}],
“signHereTabs”:[{
...
}]
}

我不是在要求推荐工具。我正试图找出如何使用DocuSign API从签名文档中检索信息。这似乎是一个合法的问题。。Opp想知道如何通过DocuSign API而不是使用外部工具获取特定信息。我想你只是误读了这正是我要找的。我相信混淆是由于UI和API之间这些字段的名称不一致造成的。在UI中,它们到处都被称为“标签”,但在API中,它们似乎被称为“标签”。如果您正在从特定收件人处查找信息,这也是一个很好的答案。不过,在我的具体案例中,我使用的是嵌入式签名,我从不设置收件人id。不过,这里的信息对其他人来说很好。
    GET https://{server}/restapi/{apiVersion}/accounts/{accountId}/envelopes/{envelopeId}/recipients/{recipientId}/tabs

    X-DocuSign-Authentication: <DocuSignCredentials><Username>{name}</Username><Password>{password}</Password><IntegratorKey>{integrator_key}</IntegratorKey></DocuSignCredentials>
    Accept: application/json
    Content-Type: application/json
    {
      "approveTabs":[{
        <Tab information removed>
      }],
      "textTabs":[{
        <Tab information removed>
      }],
      "signHereTabs":[{
        ...
     }]
    }