Skip to main content
This page documents an earlier version of the API client. For the latest version, see Retrieve dictionary settings.
Required ACL: settings You can find the list of ‘languages` settings in the settings parameters page.

Examples

Get stopword settings

// Synchronous
dictionaryClient.GetDictionarySettings();

// Asynchronous
var getDictionarySettingsResponse = dictionaryClient.GetDictionarySettingsAsync();
getDictionarySettingsResponse.Wait();

Parameters

requestOptions
object
A mapping of request options to send along with the request.

Response

settings
object
Map of language ISO code supported by the dictionary (for example, “de” for German) to a boolean value.When set to true, the standard entries for the language are disabled.Fetch settings doesn’t return false values.Example:
JSON
"disableStandardEntries": {
  "stopwords": {
    "ru": "true",
    "en": "true",
    // ...
  }
}

Response as JSON

This section shows the JSON response returned by the API. Each API client wraps this response in language-specific objects, so the structure may vary. To view the response, use the getLogs method. Don’t rely on the order of properties—JSON objects don’t preserve key order.
JSON
{
  "disableStandardEntries": {
    "stopwords": {
      "ru": "true"
    }
  }
}
I