Reputation: 21
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
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