简体   繁体   English

[docusignapi]如何要求密码才能使收件人看到文档

[英][docusignapi]How to require password before recipient can see documents

[docusignapi]如果我要发送文件进行签名,我可以要求用户在看到文件之前先知道密码(我将分别发送该密码)吗?

There are many different recipient authentication methods that are available through the api. api提供了许多不同的收件人身份验证方法。 As Luis mentions Access Code is one way. 正如路易斯提到的那样,访问代码是一种方法。 You can set up an Access Code and send the actual separately through SMS, or you can just go ahead and use the SMS authentication through the api. 您可以设置访问代码并通过SMS单独发送实际代码,也可以直接通过api使用SMS身份验证。 In addition to SMS there are things like Phone Authentication, Social ID Auth, and others. 除了SMS,还有电话验证,社交ID验证等功能。

Here are examples of the some of the signer authentication methods and how they would fit into your request body JSON: 以下是一些签名者身份验证方法的示例,以及它们如何适合您的请求正文JSON:

"Signers": [{   
    "name": "Jone Doe",
    "email": "email@address.com",
    "recipientId": "309482348",

    ...

    "accessCode": "sample string 10",
    "requireIdLookup": "sample string 12",
    "idCheckConfigurationName": "sample string 13",
    "socialAuthentications": [
      {
        "authentication": "sample string 1"
      }
    ],
    "phoneAuthentication": {
      "recipMayProvideNumber": "sample string 1",
      "validateRecipProvidedNumber": "sample string 2",
      "recordVoicePrint": "sample string 3",
      "senderProvidedNumbers": [
        "sample string 1"
      ]
    },
    "samlAuthentication": {
      "samlAssertionAttributes": [
        {
          "name": "sample string 1",
          "value": "sample string 2"
        }
      ]
    },
    "smsAuthentication": {
      "senderProvidedNumbers": [
        "sample string 1"
      ]
    },

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

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