Change the Language / Locale
To change the language for a dossier you can set the locale
field. The locale can be set on a dossier and invitee level.
The following locales are supported:
de-DE,
en-US
, es-ES
, fr-FR
, hu-HU
, it-IT
, ja-JP
, nl-NL
, pl-PL
, pt-PT
, ro-RO
and sk-SK
.
Dossier locale
The default locale is en-US
. The dossier locale affects the language of the audit report and the emails sent to the dossier owner.
POST /dossiers
Request body
{
"name": "Contract",
"locale": "nl-NL"
}
Invitee locale
The default invitee locale is inherited from the dossier locale. In the example below, the locale for John Doe is set to de-DE
. As no locale is set for Jane Doe, it'll inherit the locale nl-NL
from the dossier level.
POST /dossiers
Request body
{
"name": "Contract",
"locale": "nl-NL",
"invitees": [
{
"name": "John Doe",
"locale": "de-DE"
},
{
"name": "Jane Doe"
}
]
}
Updated about 2 years ago