Sean Lin
Sean Lin

Reputation: 41

Is there a way to change the Docusign UI language setting through API?

I am using embedded signing and it seems it will not detect the browse language.

Upvotes: 0

Views: 181

Answers (1)

Amit K Bist
Amit K Bist

Reputation: 6818

You need to set supportedLanguage inside emailNotification for each signer in the API. Details are available at DS Docs

"signers": [{
                    "email": "[email protected]",
                    "clientUserId": "1111",
                    "emailNotification": {
                        "supportedLanguage":"de"
                    }
                 ...

Upvotes: 2

Related Questions