Docusignapi 如何使用Docusign RestAPI检索文档的XML表单数据

Docusignapi 如何使用Docusign RestAPI检索文档的XML表单数据,docusignapi,Docusignapi,嗨, 如何使用Docusign RestAPI检索文档的XML表单数据 是的,有一种方法可以获取文档表单字段的值,该方法记录在中,还有一种方法已经演示了如何进行调用,尽管它不包括您必须添加的可选查询参数“include_tabs”。你要的电话是- 获取信封收件人状态 This returns the status for all recipients of a single envelope and identifies the current routing order. The curren

嗨, 如何使用Docusign RestAPI检索文档的XML表单数据


是的,有一种方法可以获取文档表单字段的值,该方法记录在中,还有一种方法已经演示了如何进行调用,尽管它不包括您必须添加的可选查询参数“include_tabs”。你要的电话是-

获取信封收件人状态

This returns the status for all recipients of a single envelope and identifies the current routing order. The current routing order is a number that matches up to the routingOrder for envelope recipients, which shows that the envelope has been sent to a recipient, but the recipient has not completed their actions.
URL

/accounts/{accountId}/envelopes/{envelopeId}/recipients
XML, JSON
GET
可选查询项:include_tabs={true或false},include_extended={true或false}

格式

/accounts/{accountId}/envelopes/{envelopeId}/recipients
XML, JSON
GET
HTTP方法

/accounts/{accountId}/envelopes/{envelopeId}/recipients
XML, JSON
GET
参数

唯一必需的参数是信封ID。如果可选的查询包含选项卡设置为true,则 返回与收件人关联的选项卡。如果可选查询include_extended设置为true, 将返回扩展属性


例如,如果您有一个完整的信封,信封上有一个名为
DataField1
的textTab(数据字段)表单字段,您可以使用附加到URL的可选URL参数
?include_tabs=true
进行上述调用,在返回的其他数据中,textTab及其值与此类似:

"textTabs": [
      {
        "height": 11,
        "validationPattern": "",
        "validationMessage": "",
        "shared": "false",
        "requireInitialOnSharedChange": "false",
        "name": "Text",
        "value": "data goes here",
        "width": 108,
        "required": "true",
        "locked": "false",
        "concealValueOnDocument": "false",
        "disableAutoSize": "false",
        "tabLabel": "DataField1",
        "bold": "false",
        "italic": "false",
        "underline": "false",
        "documentId": "1",
        "recipientId": "6c8377fc-ff4e-45ba-b7f7-c7b9b168471c",
        "pageNumber": "1",
        "xPosition": "202",
        "yPosition": "71",
        "tabId": "936c9ab6-f8b3-42e0-8870-52a024788319"
      }

然后,您可以解析有关选项卡的任何信息,如值、名称等。

请阅读常见问题解答“如何提出好问题”。顺便说一句,阅读(may help.HI,我使用从信封RESTAPI获取文档来下载文档。在rest API文档中,它清楚地表明,文档将仅以PDF字节流下载。我如何检索文档的XML formdata。如果有任何其他API检索XML formdata。请提前建议感谢我提供了解决方案,如果它请接受您的rks作为答复。。。