Docusignapi Passing resend_envelope=true to putEvelopeRecipients返回成功但不重新发送

Docusignapi Passing resend_envelope=true to putEvelopeRecipients返回成功但不重新发送,docusignapi,Docusignapi,在Postman call中,返回success并重新发送信封 当我在我的C程序中做同样的事情时,我得到了相同的成功文本,但是信封没有被重新发送 我意识到我的c代码应该被推定为有罪,但由于下面的成功响应,我感到困惑 PUT https://demo.docusign.net/restapi/v2/accounts/<act>/envelopes/<env>/recipients/resend_envelope=true 收件人将只接收电子邮件 如果信封状态为“已发送”

在Postman call中,返回success并重新发送信封

当我在我的C程序中做同样的事情时,我得到了相同的成功文本,但是信封没有被重新发送

我意识到我的c代码应该被推定为有罪,但由于下面的成功响应,我感到困惑

PUT https://demo.docusign.net/restapi/v2/accounts/<act>/envelopes/<env>/recipients/resend_envelope=true

收件人将只接收电子邮件

如果信封状态为“已发送” 信封已到达收件人的发送顺序
如果信封处于已创建状态,则呼叫将成功,但不会发送电子邮件

信封处于已发送状态。我已使用有关发送顺序的信息更新了答案。如果它解决了您的问题,请告诉我。
{
  "recipientUpdateResults": [
    {
      "recipientId": "1",
      "errorDetails": {
        "errorCode": "SUCCESS",
        "message": ""
      }
    },
    {
      "recipientId": "2",
      "errorDetails": {
        "errorCode": "SUCCESS",
        "message": ""
      }
    }
  ]
}