Getting started
Create a dictionary, add words, and verify the result.
1
1) Create a dictionary
{
"cmd": "custom_dictionary",
"access_key": "...",
"lang": "en_US",
"action": "create",
"description": "My first dictionary"
}{
"result": [
{
"id": 101565,
"lang": "en_US",
"description": "My first dictionary",
"wordlist": [],
"status": "success",
"message": ["Dictionary created."]
}
]
}2
2) Add initial words
{
"cmd": "custom_dictionary",
"access_key": "...",
"lang": "en_US",
"action": "addwords",
"id": 101565,
"wordlist": "word1,word2"
}{
"result": [
{
"id": 101565,
"lang": "en_US",
"description": "My first dictionary",
"wordlist": ["word1", "word2"],
"status": "success",
"message": ["Words added."]
}
]
}3
Next
Last updated
Was this helpful?