Response format
Success envelope and field semantics for user dictionary actions.
Successful actions return the same structure.
{
"name": "my_dict",
"action": "addword",
"wordlist": [
"word1",
"word2"
],
"modificationTime": 1772124021
}<user_dictionary>
<name>my_dict</name>
<action>addword</action>
<wordlist>
<word>word1</word>
<word>word2</word>
</wordlist>
<modificationTime>1772124021</modificationTime>
</user_dictionary>Fields
Field
Type (JSON)
Notes
name
string
Dictionary name operated on. After rename, this is the new name.
action
string
Executed action name.
wordlist
string[]
Words affected or returned by the action.
modificationTime
integer
Unix time (seconds).
0 can be returned for destructive actions.
Last updated
Was this helpful?

