简体   繁体   中英

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

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

There are many different recipient authentication methods that are available through the 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. In addition to SMS there are things like Phone Authentication, Social ID Auth, and others.

Here are examples of the some of the signer authentication methods and how they would fit into your request body 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"
      ]
    },

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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