DocuSign Carbon Copy 没有收到通知

DocuSign Carbon Copy Doesn't Receive Note

我在 iOS 应用程序中使用 DocuSign 的 API 来签署文档。一切正常,除了 Carbon Copy 体验。

我有两个签名者,路由顺序为 1 和 2。然后,我有几个 CC 收件人,都具有路由顺序 3。

签署文档后,抄送收件人会收到一封电子邮件,提醒他们文档已签署,但他们没有收到应收到的通知。我知道我设置得很好 属性:当 CC 收件人的路由顺序为 1 或 2 时,他们会收到一封包含注释的电子邮件,然后他们会在签署文档时收到一封电子邮件。

我怎样才能让我的抄送收件人在正确的时间点收到他们的电子邮件,以及我希望他们看到的注释?

这是来自 DocuSign 的日志:

POST https://na2.docusign.net:8822/restapi/v2/accounts/6580857/envelopes
Content-Length: 284777
Content-Type: application/json
Connection: keep-alive
Accept: application/json
Accept-Language: en-US; q=1.0
Host: na2.docusign.net
User-Agent: Sales/1.0(iPhone; iOS 9.3.2; Scale/2.00)
X-DocuSign-Authentication: {"Username":"[email1]","Password":"[omitted]","IntegratorKey":"[omitted]"}
X-DocuSign-SDK: Obj-C
X-Forwarded-For: 69.74.21.33
X-SecurityProtocol-Version: TLSv1.2
X-SecurityProtocol-CipherSuite: ECDHE-RSA-AES256-GCM-SHA384

{"status":"sent","documents":[{"documentId":"1","documentBase64":"[omitted]","name":"Test Name"}],"emailSubject":"Subject","emailBlurb":"","recipients":{"signers":[{"email":"[email1]","routingOrder":"1","clientUserId":"1001","tabs":"[omitted]", recipientId":"1","name":"John Doe"},{"note":"This is a note that appears during the signing experience","tabs":"[omitted]","email":"[email2]","clientUserId":"1002","routingOrder":"2","recipientId":"2","name":"Jane Doe"}],"carbonCopies":[{"roleName":"Carbon Copy","routingOrder":"3","email":"[email3]","recipientId":"3","note":"This note does not appear in the email sent to the address.","name":"John Smith"}]}}
201 Created
Content-Type: application/json; charset=utf-8

{
  "envelopeId": "f3421750-6884-4f84-a318-d4637151222c",
  "uri": "/envelopes/f3421750-6884-4f84-a318-d4637151222c",
  "statusDateTime": "2016-07-12T12:51:24.4870000Z",
  "status": "sent"
}

我注意到我将电子邮件简介部分留空了。这可能是一个潜在的解决方案,还是该字段的内容会显示给参与签名的所有各方?实际上,我需要能够为多个 CC 收件人提供多个不同的注释。据我所知,这可以在 DocuSign 的网站上实现,所以我不明白为什么不能通过 API.

其实我的问题好像是对DocuSign的API有误解造成的。 note 字段旨在提供仅在签名体验期间出现的注释,而 "emailNotification":{"emailSubject":"TEST","emailBody":"TEST"} 字段旨在实现我想要实现的目标。