简体   繁体   English

Docusign - 如何对信封表单数据进行排序? 使用 C# SDK EnvelopeAPI.GetEnvelopeFormData

[英]Docusign - How to sort envelope form data? Using C# SDK EnvelopeAPI.GetEnvelopeFormData

Is there any way to sort the form data by label creation date or by by the placement of the label in the envelope?有没有办法按标签创建日期或标签在信封中的位置对表单数据进行排序? Based on the documentation in get envelopeFormData it seems like no option exists.根据获取信封形式数据中的文档,似乎不存在任何选项。 I am trying to sort the response form data by appearance in the envelope template, but the sdk alone only provides form label name and form label value.我正在尝试按信封模板中的外观对响应表单数据进行排序,但仅 sdk 仅提供表单标签名称和表单标签值。

There is no option in the SDK for what you are trying to achieve. SDK 中没有针对您要实现的目标的选项。 Separate tag creation/update is not traced.不会跟踪单独的标记创建/更新。 What you can do is to make a call to get single envelope which will return "lastModifiedDateTime" but this is date for the last change made to the envelope.您可以做的是拨打电话获取单个信封,该信封将返回“lastModifiedDateTime”,但这是对信封进行的最后更改的日期。 I hope this will help a little bit我希望这会有所帮助

You can get this information from the ListRecipents endpoint, but you will need to construct it by yourself if you want to the doc.您可以从ListRecipents端点获取此信息,但如果您想要文档,则需要自己构建它。

The endpoint gives you info about the envelope like: signers, agents, editors .端点为您提供有关信封的信息,例如: signers, agents, editors The information you need is stored in the textTabs array and you'll need to pass include_tabs=true as param to the endpoint and the response will include info like: value pageNumber xPosition yPosition anchorString anchorUnits您需要的信息存储在textTabs数组中,您需要将include_tabs=true作为参数传递给端点,响应将包括以下信息: value pageNumber xPosition yPosition anchorString anchorUnits

The ListRecipients endpoint looks like this: /restapi/v2.1/accounts/{accountId}/envelopes/{envelopeId}/recipients ListRecipients 端点如下所示: /restapi/v2.1/accounts/{accountId}/envelopes/{envelopeId}/recipients

For eg if you want to get all the fields in order for signers it will be in signers[0].tabs.textTabs例如,如果您想为签名者获取所有字段,它将在signers[0].tabs.textTabs

More info in the docs here with all options available: https://developers.docusign.com/docs/esign-rest-api/reference/envelopes/enveloperecipients/list/此处文档中的更多信息以及所有可用选项: https : //developers.docusign.com/docs/esign-rest-api/reference/envelopes/enveloperecipients/list/

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 如何不使用C#SDK自动发送Docusign信封并获取URL - How to not automatically send a Docusign Envelope and get the URL Instead using the C# SDK 使用 C# 重新发送 Docusign 信封 - Resend Docusign envelope using C# 使用Docusign API使用C#SDK将多个文档添加到信封 - Add multiple documents to envelope using c# sdk using Docusign API Docusign SDK C# Radio Button Group ,Docusign tab 元素中指定的 RecipientId 未引用此信封的收件人 - Docusign SDK C# Radio Button Group ,Docusign The RecipientId specified in the tab element does not refer to a recipient of this envelope 使用新的DocuSign C#Client取消信封 - Voiding an envelope using the new DocuSign C# Client 如何使用C#SDK设置DocuSign通知提醒 - How to setup DocuSign Notification Reminders using C# SDK 如何使用DocuSign C#客户端SDK获取REST跟踪? - How to get the REST Trace using the DocuSign C# Client SDK? 使用C#进行Docusign移动信封-如何将XML / JSON请求和“ PUT”方法转换为有效的C#代码? - Docusign Move Envelope using C# - How can I turn XML/JSON requests and “PUT” methods into working C# code? C# DocuSign API:如何预填表单字段数据 - C# DocuSign API: How to prefill form field data DocuSign API C#在发送模板作为信封时如何设置文本字段的值? - DocuSign API C# How to set the value of a text field when sending out a template as an envelope?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM