updateOptionsLanguagePreference
Update the language preference for an account. Determines the language in which communications about the account are sent. It does not affect the language seen in the UI.
Arguments
Variables needed to update the language preference for an account.
Returns
UpdateOptionsLanguagePreferenceUpdate the language preference for an account. Determines the language in which communications about the account are sent. It does not affect the language seen in the UI.
Possible Errors
Allowed Viewers
Required Permissions
Can update account detailsQuery Complexity
1Examples
The example data in the variables and responses below are autogenerated values designed to resemble real inputs. They do not represent actual customer data, and in some cases may require additional validation.
mutation UpdateOptionsLanguagePreference($input: OptionsLanguagePreferenceInput!) {
updateOptionsLanguagePreference(input: $input) {
optionsLanguagePreference
}
}
Variables
{
"input": OptionsLanguagePreferenceInput
}
Response
{
"data": {
"updateOptionsLanguagePreference": {
"optionsLanguagePreference": "ENGLISH"
}
}
}