如何在没有路由顺序的情况下使用最后一个签署者设置签署日期? [英] How do I set Signed Date with the last Signer without Routing Order?

查看:65
本文介绍了如何在没有路由顺序的情况下使用最后一个签署者设置签署日期?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正面临一个问题,对我来说很难理解为什么这么简单的事情很难找到解决方案.基本上,我希望在最后一个签名者完成该过程时在每个文档(包含在信封中)中设置一个签名日期".

I'm facing a problem and to me is very hard to understand why something so simple is so hard to find a solution. Basically I want so set a Signed Date in each document (contained in the envelope) when the last signer complete the process.

我有此文件和签名人

文档:文档A,文档B,文档C

Documents: Doc A, Doc B, Doc C

签名者:签名者1,签名者2,签名者3

Signers: Signer 1, Signer 2, Signer 3

现在组合

按文件签名:

文档A:签名者1,签名者2和签名者3

Doc A: Signer 1, Signer 2 and Signer 3

文档B:签名者1和签名者2

Doc B: Signer 1 and Signer 2

Doc C:签名者2和签名者3

Doc C: Signer 2 and Signer 3

因此,我们的想法是创建一个包含所有这些信息的信封,而无需设置路由顺序,我想在最后一个签名者(我不知道是谁)签名时在每个文档中设置一个签名日期".

So, the idea is create an envelope with all this information and without setting the Routing Order I would like to set a Signed Date in each document when the last signer (I don't know which one was) make the sign.

有一些神奇的方法吗?

我将不胜感激任何提示/帮助:)

I will appreciate any tip/help :)

PS:这是我的第一个问题,对不起,如果我做错了事.

PS: This is my first question, so sorry if i'm doing something wrong.

{
  "recipients": {
    "signers": [
      {
        "email": "signer1@yopmail.com",
        "name": "Signer 1",
        "recipientId": 1,
        "tabs": {
          "dateSignedTabs": [
            {
              "font": "Calibri",
              "fontSize": "Size9",
              "bold": "true",
              "anchorString": "Signer1 Signed Date",
              "anchorUnits": "pixels",
              "anchorYOffset": "-2", 
              "anchorXOffset": "-5"
            }
          ],
          "signHereTabs": [
            {
                "anchorString": "Signer 1",
                "anchorUnits": "pixels",
                "anchorYOffset": "10", 
                "anchorXOffset": "-40"
            }
          ]
        }
      },
      {
        "email": "signer2@yopmail.com",
        "name": "Signer 2",
        "recipientId": 2,
        "tabs": {
          "dateSignedTabs": [
            {
              "font": "Calibri",
              "fontSize": "Size9",
              "bold": "true",
              "anchorString": "Signer2 Signed Date",
              "anchorUnits": "pixels",
              "anchorYOffset": "-2", 
              "anchorXOffset": "-5"
            }
          ],
          "signHereTabs": [
              {
                "anchorString": "Signer 2",
                "anchorUnits": "pixels",
                "anchorYOffset": "10", 
                "anchorXOffset": "-40"
              }
            ]
          }
      },
      {
        "email": "signer3@yopmail.com",
        "name": "Signer 3",
        "recipientId": 3,
        "tabs": {
          "dateSignedTabs": [
            {
              "font": "Calibri",
              "fontSize": "Size9",
              "bold": "true",
              "anchorString": "Signer3 Signed Date",
              "anchorUnits": "pixels",
              "anchorYOffset": "-2", 
              "anchorXOffset": "-5"
            }
          ],
          "signHereTabs": [
              {
                "anchorString": "Signer 3",
                "anchorUnits": "pixels",
                "anchorYOffset": "10", 
                "anchorXOffset": "-40"
              }
            ]
        }
      }
    ]
  },
  "emailSubject": "DocuSign API - Signature Request on Document Call",
  "documents": [
    {
      "documentId": "1",
      "name": "Doc A.pdf",
      "documentBase64": <Document1_Base64>
    },
    {
      "documentId": "2",
      "name": "Doc B.pdf",
      "documentBase64": <Document2_Base64>
    },
    {
      "documentId": "3",
      "name": "Doc C.pdf",
      "documentBase64": <Document3_Base64>
    }
  ],
  "status": "sent"
}

POST /restapi/v2.1/accounts/{accountId}/envelopes

使用REST API v2.1,我以有效负载代码为例创建一个信封.

Using REST API v2.1 I create an envelope with the payload code as example.

如您所见,我不想使用路由顺序,因此,每个签署人都有自己的dateSignedTabs女巫,对于mi来说是可以的,但是我想获取最后一个签署人的日期,将其放在开始时文件,那是我的真实交易.

As you can see I don't want to use Routing Order, so, each signers has its own dateSignedTabs witch for mi is OK, but I want so get the date of the last signer to put it at the begin of the Document, thats is my real deal.

推荐答案

每个 dateSigned 选项卡都属于特定的签名者收件人.因此,您有两种选择:

Each dateSigned tab belongs to a specific signer recipient. So you have a couple of options:

  1. 使用路由顺序.然后,最后一位签名者的 dateSigned 将是最后一位签名者的日期.
  2. 在文档的签名页面上添加诸如本协议于上次签名之日敲定"之类的措词.-然后是三个签名和三个 dateSigned 标签.咨询律师,我确定您的目标可以通过合同语言来实现.这是合同撰写者的示例.
  3. 您可以添加更多程序来添加生效日期".最后一个人签名的日期的字段.参见下文.
  1. Use a routing order. Then the dateSigned of the last person will be the date of the last signer.
  2. On the signing page of the document add verbiage such as "This agreement was finalized on the date of the last signature" -- followed by the three signatures and three dateSigned tabs. Consult a lawyer, I'm sure your goal can be accomplished by contract language. Here is an example by a contract writer.
  3. You can add more programming to add an "effective date" field with the date the last person signed. See below.

要添加生效日期",请在最后签名者的

  1. 将所有签名者设置为路由顺序1.由于它们都具有相同的路由顺序,因此这与信封签名者的无路由顺序相同.
  2. 添加伪造的嵌入式签名者作为路由顺序2.电子邮件地址为"system_signer@example.com".由于这是嵌入式签名者,因此不会发送任何电子邮件.
  3. 在帐户(连接)或信封(事件通知)级别添加一个Webhook.通过使用中间PaaS系统,您可以在没有防火墙更改的情况下接收防火墙后面的Webhook.参见我的博客文章
  4. 当信封已被发送"时,webhook会通知您的应用.系统签名者.更正信封:设置生效日期"为标签(文本标签)到当前日期.并删除系统".签名者.信封将立即完成.
  5. 成功.

这篇关于如何在没有路由顺序的情况下使用最后一个签署者设置签署日期?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆