Docusign Rest API CarbonCopy不起作用

时间:2015-10-19 21:07:47

标签: docusignapi

我正在尝试使用Docusign(使用RestAPI)发送签名文档,它有一个收件人作为签名者,一个作为Carbon Copy。我已经粘贴了下面的JSON,并且在演示环境中调用Rest API时也获得了成功消息。

然而,指定为CarbonCopy的收件人从未收到电子邮件,Signer确实收到了来自Docusign的电子邮件

"emailSubject" : "This is the Subject of the Message",
  "emailBlurb" : "This is the Body of the message",
  "recipients" : {
    "signers" : [ {
      "routingOrder" : "1",
      "name" : "Signer 1",
      "email" : "signer1@gmail.com",
      "recipientId" : "1",
      "tabs" : {
        "signHereTabs" : [ {
          "anchorString" : "By:",
          "anchorXOffset" : "0",
          "anchorYOffset" : "0",
          "anchorIgnoreIfNotPresent" : "true",
          "anchorUnits" : "inches"
        } ]
      }
    } ],
    "carbonCopies" : [ {
      "routingOrder" : "2",
      "recipientId" : "2",
      "name" : "Carbon Copy1",
      "email" : "carboncopy1@gmail.com"
    } ]
  },
  "documents" : [ {
    "name" : "document.pdf",
    "documentId" : "1",
    "bytes" : "document Bytes go here - Omitted to make it readable"
  } ],
  "status" : "sent"
}

收到成功消息

{  "envelopeId": "95c0cd64-7b4e-4d98-ad9c-ae74c08cf7f9",  "uri": "/envelopes/95c0cd64-7b4e-4d98-ad9c-ae74c08cf7f9",  "statusDateTime": "2015-10-19T21:00:30.7100000Z",  "status": "sent"}

1 个答案:

答案 0 :(得分:1)

是的,我确实解决了抄送路由顺序始终高于签名者的问题,所以在上面的JSON中只是颠倒了路由顺序,它对我有用