Eric Furspan
Eric Furspan

Reputation: 761

Docusign envelope creation without signer name

Is it possible to create a Docusign envelope without giving a name for the signer?

Here is the sample envelope definition from the REST docs

{
   "status":"sent",
   "emailSubject":"Example of one recipient, type signer",
   "documents":[
      {
        "documentId":"1",
        "name":"contract.pdf",
        "documentBase64":"base64 document bytes..."
      }
   ],
   "recipients":{
   "signers":[
       {
            "name":"Lisa Simpson",
            "email":"[email protected]",
            "recipientId":"1",
            "routingOrder":"1",
            "tabs":{
               "signHereTabs":[
               {
                  "xPosition":"150",
                  "yPosition":"200",
                  "documentId":"1",
                  "pageNumber":"1"
               }]
             }
       }]
    }
}

`

Instead of "Lisa Simpson" I want to have a blank string "" to withhold the persons name. Is this allowed? When I try I get back this error INVALID_USERNAME_FOR_RECIPIENT but am wondering if there is a workaround.

Thanks

Upvotes: 0

Views: 316

Answers (1)

Drew
Drew

Reputation: 5029

No. Signers need to have names defined.

An exception to this is if you are using a 'specify recipients' role prior to the signer. In this case, you can have a blank placeholder signer, but the Specify user will be required to enter both a name and email for the signer.

What is your use case for a signer without a name?

Upvotes: 1

Related Questions