简体   繁体   English

如何添加私信

[英]how to add a private message

Using the DocuSign api and I can't seem to find anywhere on how to add a private message to a signer. 使用DocuSign api,我似乎无法找到如何向签名者添加私人消息的任何地方。 I know this is possible through DocuSign itself-- send a private message -- but using the api doesn't seem to include this. 我知道这可以通过DocuSign本身 - 发送私人消息 - 但使用api似乎不包括这个。 I checked at the envelope level and at the signer level but I don't see a field to include a private message. 我检查了信封级别和签名者级别,但我没有看到包含私人消息的字段。 Is there a place I missed where one can include a private message to a signer in the email? 是否有一个我错过的地方可以在电子邮件中向签名者添加私信?

The data object you're looking for is simply called note and can be found on the recipient type definition (ie signer, agent, carbon copy, etc). 您正在寻找的数据对象简称为note ,可以在收件人类型定义中找到(即签名者,代理人,抄送等)。

Here's the API Reference for the property under the signer object: https://docs.docusign.com/esign/restapi/Envelopes/EnvelopeRecipients/create/#definitions--note 以下是signer对象下属性的API参考: https//docs.docusign.com/esign/restapi/Envelopes/EnvelopeRecipients/create/#definitions-note


Details : A note sent to the recipient in the signing email. 详细信息 :在签名电子邮件中发送给收件人的注释。 This note is unique to this recipient. 此注释对此收件人是唯一的。 In the user interface, it appears near the upper left corner of the document on the signing screen. 在用户界面中,它出现在签名屏幕上文档的左上角附近。

Maximum Length: 1000 characters. 最大长度:1000个字符。


Example : 示例

"recipients": 
 {
    "signers": [
     {
        "email": "sally@email.com",
        "name": "Sally Doe",
        "note": "This is a private email note only for Sally.",

        ...

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

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