Getting started
Create a dictionary, add words, and verify it works.
1
Create a dictionary
{
"cmd": "user_dictionary",
"action": "create",
"name": "my_dict"
}{
"cmd": "user_dictionary",
"action": "create",
"name": "my_dict",
"wordlist": "WebSpellChecker,WProofreader"
}{
"name": "my_dict",
"action": "create",
"wordlist": ["WebSpellChecker", "WProofreader"],
"modificationTime": 1772124021
}2
Add your first words
{
"cmd": "user_dictionary",
"action": "addwords",
"name": "my_dict",
"word": "API"
}{
"cmd": "user_dictionary",
"action": "addwords",
"name": "my_dict",
"wordlist": "API,SDK,DevOps"
}{
"name": "my_dict",
"action": "addword",
"wordlist": ["API", "SDK", "DevOps"],
"modificationTime": 1772124069
}3
Next
Last updated
Was this helpful?