简体   繁体   English

在 docusign rest api 中,在创建信封时,它总是发送到除 json 包含的邮件之外的其他邮件?

[英]In docusign rest api, while creating envelopes it always send to the other mail except json contained mail?

The post request of creating envelop in docusign api.docusign api中创建信封的post请求。

https://demo.docusign.net/restapi/v2/accounts/ {{accountId}}/envelopes https://demo.docusign.net/restapi/v2/accounts/ {{accountId}}/envelopes

Request Json Object:请求 Json 对象:

{
  "enableResponsiveChoice": true,
  "emailSubject": "Guuu",
  "envelopeId": "02c73303-704c-485d-b30f-c6cae3adfa6c",
  "autoNavigation": true,
  "status": "sent",
  "workflow": {
    "currentWorkflowStepId": "",
    "workflowSteps": []
  },
  "signingLocation": "online",
  "allowMarkup": false,
  "createdDateTime": "2019-05-28T06:31:03.150Z",
  "lastModifiedDateTime": "2019-05-28T06:31:03.150Z",
  "statusChangedDateTime": "2019-05-28T06:31:03.150Z",
  "expireEnabled": "true",
  "expireAfter": "120",
  "envelopeIdStamping": true,
  "signerCanSignOnMobile": "true",
  "isSignatureProviderEnvelope": true,
  "allowComments": true,
  "hasComments": false,
  "allowViewHistory": "true",
  "envelopeMetadata": {
    "allowAdvancedCorrect": "true",
    "enableSignWithNotary": "false",
    "allowCorrect": "true"
  },
  "envelopeLocation": "current_site",
  "isDynamicEnvelope": "true",
  "recipients": {
    "signers": [
      {
        "name": "shailesh",
        "email": "shaileshbhurle1221@gmail.com",
        "recipientId": "6",
        "tabs": {
          "signHereTabs": [
            {
              "xPosition": "150",
              "yPosition": "200",
              "documentId": "1",
              "pageNumber": "1"
            }
          ]
        }
      }
    ]
  }
}

Response Object:响应对象:

{
    "envelopeId": "e88f7f69-34e0-4bfa-b6bf-ce443073f3d6",
    "uri": "/envelopes/e88f7f69-34e0-4bfa-b6bf-ce443073f3d6",
    "statusDateTime": "2019-05-28T19:51:53.0100000Z",
    "status": "sent"
}

It envelop wont sent to shaileshbhurle1221@gmail.com else it sent to other mail id.它不会发送到shaileshbhurle1221@gmail.com,否则它会发送到其他邮件 ID。 but why?但为什么?

在 Request Json: { .. "envelopId":"" } 中,这意味着已经创建了信封,并且该特定信封 ID 的电子邮件已被锁定,这就是为什么它会发送到另一个邮件 ID 而不是 XXXXXXXXXXXX1221@gmail.com。

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

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