简体   繁体   English

有没有一种方法可以强制docusign api中的信封仅是湿签名?

[英]Is there a way to force an envelope in docusign api to be wet signature only?

I'm trying to create an envelope that will only allow for a wet signature using the docusign api. 我正在尝试创建一个只允许使用docusign api进行湿签名的信封。 Is there any functionality for this? 有什么功能吗? I haven't been able to find it where I've looked. 我一直无法找到它。 I know there's an enableWetSign property, but that still allows for Esign. 我知道有一个enableWetSign属性,但是仍然允许使用Esign。 If somebody could help me with this I'd really appreciate it. 如果有人可以帮助我,我将非常感激。

DocuSign has since added this feature, so at the time Kim was correct, however, this now can be done per recipient as shown below: 此后,DocuSign添加了此功能,因此,在Kim正确的时候,现在可以按接收者完成此操作,如下所示:

Keep in mind the following as brought up in follow-on answers: 请记住以下后续答案中提到的内容:

  • DocuSign Support or account representative must enable this feature for your DocuSign account first before it will work. DocuSign 支持客户代表必须先为您的DocuSign帐户启用此功能,然后才能使用。
  • needs to be used with a composite template (shown below) vs a simple template referenced by templateid (Thanks - Tom Copeland) 需要与复合模板(如下所示)以及由templateid引用的简单模板一起templateid (谢谢-Tom Copeland)
  • Set the enableWetSign property at the envelope info 在信封信息上设置enableWetSign属性
  • Set the requireSignOnPaper property for each recipient. 为每个收件人设置requireSignOnPaper属性。

    POST /restapi/v2/accounts/[youraccountid]/envelopes HTTP/1.1 Host: demo.docusign.net X-DocuSign-Authentication: [removed] Content-Type: multipart/form-data; boundary=AAA Accept: application/json

` `

--AAA
Content-Type: application/json
Content-Disposition: form-data

{
  "enableWetSign": "true",
  "enforceSignerVisibility": "true",
  "compositeTemplates": [
    {
      "inlineTemplates": [
        {
          "sequence": "1",
          "recipients": {
            "signers": [
              {
                "recipientId": "1",
                "name": "Your Email (Sees all)",
                "email": "yourgmail+Test1@gmail.com",
                "routingOrder": "1",
                "tabs": {
                  "signHereTabs": [
                    {
                      "anchorString": "Sign1",
                      "tabLabel": "Sign Here 1"
                    }
                  ]
                }
              },
              {
                "recipientId": "2",
                "name": "Your Email (sees all but page 2)",
                "email": "yourgmail@gmail.com",
                "requireSignOnPaper": "true",
                "routingOrder": "2",
                "tabs": {
                  "signHereTabs": [
                    {
                      "anchorString": "Sign2",
                      "tabLabel": "Sign Here 2"
                    }
                  ]
                }
              }
            ],
            "carbonCopies": [
              {
                "email": "yourgmail+Testcc@gmail.com",
                "name": "Your Email (see all but 3 document)",
                "excludedDocuments": [
                  "3"
                ],
                "recipientId": "3",
                "routingOrder": "3"
              },
              {
                "email": "yourgmail+Testcc1@gmail.com",
                "name": "Your Email (see all)",
                "recipientId": "4",
                "routingOrder": "4"
              }
            ]
          },
          "documents": [
            {
              "documentId": "1",
              "name": "test1.txt"
            },
            {
              "documentId": "2",
              "name": "test2.txt"
            },
            {
              "documentId": "3",
              "name": "test3.txt"
            }
          ]
        }
      ]
    }
  ],
  "emailBlurb": "Test for CEFTAF DocVis ForceSign on Paper",
  "emailSubject": "Test for CEFTAF DocVis ForceSign on Paper",
  "status": "sent",
}   

--AAA
Content-Type: application/txt
Content-Disposition: file; filename="test1.txt"; documentid=1

Test Document 1 

Sign1 Here _______________________________



Sign2 Here _______________________________


--AAA
Content-Type: application/txt
Content-Disposition: file; filename="test2.txt"; documentid=2

Test Document 2

Sign1 Here _______________________________

--AAA
Content-Type: application/txt
Content-Disposition: file; filename="test3.txt"; documentid=3

Test Document 3

No Tabs for anyone means visible to all by default unless excluded

--AAA--

` `

I'm not aware of any way -- either using the API or just via account configuration using the DocuSign web console UI -- to REQUIRE a WET signature and explicitly DISALLOW an ELECTRONIC signature for an Envelope. 我不知道有任何方法-使用API​​或仅通过使用DocuSign Web控制台UI的帐户配置-要求WET签名并显式禁用信封的电子签名。 As you point out (by mentioning the enableWetSign property) -- you can control whether or not wet signing is allowed,...but there is no comparable property to control whether or not electronically signing is allowed. 如您所指出的(通过提及enableWetSign属性),您可以控制是否允许湿签名,但是没有类似的属性来控制是否允许电子签名。

特定的收件人元素是“ requireSignOnPaper”。

Note that requireSignOnPaper needs to be used with a composite template; 请注意, requireSignOnPaper需要与复合模板一起使用。 it won't have any effect if used with a simple templateId parameter. 如果与简单的templateId参数一起使用,则不会有任何效果。

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

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