1

我正在阅读此处找到的指南,它谈到了如果我们使用 clientid,我们如何禁用 Docusign 发送电子邮件。但是,在使用 Docusign 为复合模板创建信封 api 请求并包含客户端 ID 后,当我们生成收件人签名 url 时,电子邮件仍在发送中。以下是我发送的 JSON 合同

{
   "emailSubject": "Some Subject",
   "status": "sent",
   "compositeTemplates": [
      {
         "serverTemplates": [
            {
               "sequence": "1",
               "templateId": "SOME ID"
            }
         ],
         "inlineTemplates": [
            {
               "recipients": {
                  "signers": [
                     {
                        "name": "Ashwin Jacob",
                        "email": "admin@ashwinjacob.com",
                        "recipientId": "1",
                        "clientUserId": "1",
                        "status": "sent",
                        "embeddedRecipientStartURL": "SIGN_AT_DOCUSIGN",
                        "roleName": "Advisor"
                     }
                  ],
                  "carbonCopies": null
               },
               "sequence": "1"
            }
         ]
      }
   ],
   "recipients": {
      "signers": [
         {
            "name": "Mailnator Jacob",
            "email": "ashwinjacob@mailinator.com",
            "recipientId": "1",
            "clientUserId": "1",
            "status": "sent",
            "embeddedRecipientStartURL": "SIGN_AT_DOCUSIGN",
            "roleName": "Advisor"
         }
      ]
   }
}

不确定这是否相关,但我们每次都将客户端用户 ID 硬编码为 1。

4

1 回答 1

2

由于您在通话中使用embeddedRecipientStartURLwith ,因此 DocuSign 将发送一封电子邮件。从您的请求中删除,您将不会收到来自 DocuSign 的任何电子邮件。设置意味着您要使用嵌入式签名,对于嵌入式签名者,DocuSign 默认不发送任何初始电子邮件,但如果您在请求中设置,那么您要求 DocuSign 也为嵌入式签名者发送初始电子邮件。clientUserIdcreateenvelopeembeddedRecipientStartURLclientUserIdembeddedRecipientStartURL

于 2018-05-23T18:57:15.843 回答