简体   繁体   English

创建信封后但在生成收件人视图之前添加标签

[英]Add tags after envelope creation but before generating the recipient view

I need to create an envelope by defining the recipients and the document. 我需要通过定义收件人和文档来创建信封。 After creating the envelope, I then need to manually add the tags. 创建信封后,我需要手动添加标签。 After adding the tags, I want to generate a recipient URL for this particular envelope ID. 添加标签后,我想为此特定的信封ID生成一个收件人URL。 Is this possible? 这可能吗?

I do not want to send the envelope but edit it by adding tags. 我不想发送信封,而是通过添加标签对其进行编辑。 I will generate a recipient view separately. 我将分别生成一个收件人视图。 Currently, I am unable to find a way to add the tags after envelope creation and before sending. 目前,我无法找到在信封创建后和发送之前添加标签的方法。

I tried to create the envelope with status: created and then generated the correction view. 我试图用status: created信封,然后生成了correction视图。 On opening the URL, it said cannot find the envelope. 打开URL时,它说找不到信封。

Create an envelope and if you want to show Send Button to the sender then use createSender View https://docs.docusign.com/esign/restapi/Envelopes/EnvelopeViews/createSender/ 创建一个信封,如果您想向发件人显示发送按钮,请使用createSender View https://docs.docusign.com/esign/restapi/Envelopes/EnvelopeViews/createSender/

and if you dont want to show Send button then create envelope with sent status and use createCorrect View https://docs.docusign.com/esign/restapi/Envelopes/EnvelopeViews/createCorrect/ 如果您不想显示“发送”按钮,则创建具有已发送状态的信封,并使用createCorrect View https://docs.docusign.com/esign/restapi/Envelopes/EnvelopeViews/createCorrect/

And if you don't want recipient to receive any email then make that recipient an embedded recipient by adding clientUserId, once clientUserId is added then that recipient will not receive an email. 而且,如果您不希望收件人接收任何电子邮件,则可以通过添加clientUserId使其成为嵌入式收件人,一旦添加了clientUserId,该收件人将不会接收电子邮件。 To get recipient View, you should use below call https://docs.docusign.com/esign/restapi/Envelopes/EnvelopeViews/createRecipient/ 要获取收件人视图,您应该在下面使用以下方法调用:https://docs.docusign.com/esign/restapi/Envelopes/EnvelopeViews/createRecipient/

Use the Create:EnvelopeRecipientTabs api to add tabs to a draft envelope. 使用Create:EnvelopeRecipientTabs api将标签添加到草稿信封。

POST /v2/accounts/{accountId}/envelopes/{envelopeId}/recipients/{recipientId}/tabs

{
  "signHereTabs": [
    {
      "anchorString": "Sign",
      "anchorMatchWholeWord": "false"
    }
  ]
}

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

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