Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.1k views
in Technique[技术] by (71.8m points)

docusignapi - DocuSign add custom email message, subject, and language when sending envelope using POST request

Using the following POST request and body to send an envelope (source https://developers.docusign.com/docs/esign-rest-api/how-to/request-signature-template-remote)

https://demo.docusign.net/restapi/v2.1/accounts/4f4xxxx-xxxxxx-xxxxxx/envelopes

{
  "templateId": "dbexxxx-xxxxx-xxxxx",
  "templateRoles": [
    {
      "email": "[email protected]",
      "name": "John Doe",
      "roleName": "signer1",
      "tabs": {
        "textTabs": [
          {
            "tabLabel": "cname",
            "value": "name"
          }
        ]
      }
    }
  ],
  "status": "sent"
}

Is there a way to specify the email message, email subject and/or email language? I tried adding "emailSubject": "Please sign ..." next to "email" but cannot seem to make it work. It is a requirement that I need to manually make this post request so I cannot use the SDK.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Where you placing the "emailSubject" field exactly in your JSON?

You can specify the the email message and subject by specifying the following fields at the root level (where you "status" is defined):

{
    "emailBlurb": "げりト画首ロ百照ょリっ毎現イタヱア掲全らいに",
    "emailSubject": "Subject of agreement",
    "templateId": "867a37*****",
    "templateRoles": [
        {
            "email": "[email protected]",
            "name": "name_of_person",
            "roleName": "Seller"
        }
    ],
    "status": "sent"
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...