简体   繁体   English

docusignapi-如何从签名者那里获取归档的“ sentDateTime”?

[英]docusignapi - How can I get the filed “sentDateTime” from the signers?

I am using REST API (docusign). 我正在使用REST API(医生)。 I need to get the field "sentDateTime" from the signers. 我需要从签名者那里获取字段“ sentDateTime”。

I use this Request: 我使用此请求:

/v2/accounts/{accountId}/envelopes/{envelopeId}/recipients / v2 /帐户/ {accountId} /信封/ {envelopeId} /收件人

The REST API never returns the field "sentDateTime" from the signers. REST API从不从签名者返回字段“ sentDateTime”。

How can I get this field from the signers? 我如何从签名人那里获得此字段?

Thanks 谢谢

You can't get this field from the signers/recipients. 您不能从签名者/收件人那里获得此字段。 Instead, you will get the field from the envelope they are included in. See below: 相反,您将从包含它们的信封中获取该字段。请参见以下内容: 在此处输入图片说明

Currently API does not return "sentDateTime" for each signer, once Signer completes the signing ceremony then you can see two fields, "signedDateTime" and "deliveredDateTime" in the API response. 当前,API不会为每个签名者返回“ sentDateTime”,一旦签名者完成了签名仪式,您就可以在API响应中看到两个字段“ signedDateTime”和“ deliveredDateTime”。 I would propose to use DocuSign Connect for getting these values as it saves you from polling, In DS Connect, DocuSign sends below data for each recipient 我建议使用DocuSign Connect获取这些值,因为它可以避免轮询,在DS Connect中,DocuSign为每个收件人发送以下数据

<RecipientStatus>
        <Type>Signer</Type>
        <Email>signerEmail@gmail.com</Email>
        <UserName>Signer1</UserName>
        <RoutingOrder>1</RoutingOrder>
        <Sent>2017-11-22T11:22:36.833</Sent>
        <Delivered>2017-11-22T11:26:10.607</Delivered>
        <Signed>2017-11-22T11:26:20.483</Signed>

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

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM