nikhil
nikhil

Reputation: 155

DocuSign API language support

We are trying to get DocuSign to send out emails for signing documents in French. We are aware of one way which is by changing the receiver's User Preferences. What I would like to know is, is it possible to send out emails in French by using the DocuSign APIs.i.e. by adding a setting in the DocuSign Envelpoe? Any information regarding this will be extremely helpful.

Thanks and Regards, Nikhil

Upvotes: 0

Views: 1109

Answers (1)

Ergin
Ergin

Reputation: 9356

There's a few ways to alter language settings for your signers:

  1. The supportedLanguage field on the emailNotification property that you set in your JSON or XML request body.
  2. The Resource Files found in Branding section of your account preferences.
  3. The client's browser language setting (controls language in the DocuSign Console).

For the supportedLanguage property your JSON would look something like:

"emailNotification": {
    "emailSubject": "Custom email subject",
    "emailBody": "Custom email body",
    "supportedLanguage": "en"
  },

This page of the documentation lists the possible enumeration values for the various languages that are supported by DocuSign.

For #2, see this page for info on Branding and Resource Files.

Note: You might have to enable "Allow sender to set email language for recipients" option through your Preferences -> Features page in the Classic DocuSign Console. If you don't see that option contact your account manager or support to have it enabled.

enter image description here

Upvotes: 2

Related Questions