从签名的文档DocuSign API检索信息 [英] Retrieving information from a signed document DocuSign API

查看:113
本文介绍了从签名的文档DocuSign API检索信息的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我是DocuSign的新手,已经制作了教程并通读了DocuSign API文档。我正在用Java开发,并成功实现了将用于签名的文档从模板发送到电子邮件地址的功能。然后打开文档,填写自定义字段。该文档已由用户签名。

I am new to DocuSign, have made the tutorials and read through the DocuSign API documentation. I am developing in Java, and have successfully achieved to send documents for signing from a template to an email address. The document then gets opened, a custom field gets filled out. The document gets signed by the user.

现在我想到了两个问题:

Well now here are two questions that arise for me:

1 )我的假设是自定义字段实际上可用于任何形式的字段,例如您拥有哪些宠物?,这是对的吗?用户应该填写吗? DocuSign会自动填写创建模板时可以添加的几乎所有其他字段。

1) Am I right with the assumption that custom fields are to be used for virtually any form field like "Which pets do you have?" that a user is expected to fill out? Almost all the other fields which I can add when creating a template are being filled out automatically by DocuSign.

2)我添加了一个名称和姓氏字段以及一个自定义字段和在此处签名字段到我通过API从中发送文档的模板。收件人填写了信息并签署了文档后,我想请求用户在自定义字段中输入的信息。我怎样才能做到这一点?我发现了各种获取文件或信封状态的请求。但是从来没有找到如何检索实际的用户输入。

2) I have added a name and surname field as well as a custom field and the "sign here" field to the template from which I am sending the document via the API. Once the recipient has has filled out the information and signed the document, I would like to request the information which the user has entered into the custom field. How can I do that? I have found various requests for getting the status of a document or envelope. But never found how I can retrieve the actual user input.

关于
Josef

Regards Josef

推荐答案

在DocuSign中,如果您有用于请求中收件人的常用选项卡,则可以使用自定义字段创建一次,然后重新创建-在后续请求中使用它们。但是,通常,如果您希望具有可编辑的字段,可以在其中收集来自收件人的信息,则可以使用 Text 字段并取消选中只读。如果通过API进行设置,则如下所示:

In DocuSign if you have common tabs that you use for your recipients in your requests then you can use the Custom Fields to create them once then re-use them in your subsequent requests. However, in general if you want to have editable fields where you will gather info from your recipients then you can use the Text field and un-check read-only. If setting through the API it would look like this:

"textTabs": [
    {
      "tabLabel": "NameOfTheTab",
      "value": "12345"
    }

您可以通过 DocuSign开发人员的功能部分了解有关使用这些字段的更多信息。中心

You can read more about using these fields through the Features section of the DocuSign Developer Center.

关于您如何检索收件人填写的数据的第二个问题,请记住选项卡始终特定于收件人(而不是文档本身),因此看看获取收件人API的标签信息调用。

With regards to your second question of how to retrieve the data that your recipients fill out, remember that tabs are always specific to recipients (as opposed to the documents themselves) so take a look at the Get Tab Information for Recipient API call.

示例:

GET https://{server}/restapi/{apiVersion}/accounts/{accountId}/envelopes/{envelopeId}/recipients/{recipientId}/tabs

这篇关于从签名的文档DocuSign API检索信息的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆