bf-coder
bf-coder

Reputation: 21

Using the docusign api c# access code for authentication of signer

Using the sample C# send document API call, how can I send a data element located in my system, such as zip code or last 4 of ssn, to be enable this as an access code to view the document? This way I know that the person signing has another level of authentication tat ties back to the signer.

Upvotes: 1

Views: 932

Answers (1)

Ergin
Ergin

Reputation: 9356

Have you read through the DocuSign API documentation yet? Just add the accessCode property to your signer JSON object and give it a value. Basically, something like this:

"recipients": 
 {
    "signers": [
     {
        "email": "[email protected]",
        "name": "Name 1",
        "accessCode": "1234",

        ...

Description from API docs:

"This Optional element specifies the access code a recipient has to enter to validate their identity. This can be a maximum of 50 characters."

Upvotes: 2

Related Questions